@font-face {
    font-family: "Halyard Display";
    src: url("../fonts/Halyard-Display-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Very Vogue";
    src: url("../fonts/Very-Vogue.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #4f1f1f;
    --ff-halyard-display: "Halyard Display";
    --ff-very-vogue: "Very Vogue";
}

.vsdmcp-single-field {
    padding: 15px 15px !important;
    background-color: #f7fafc;
    border: none !important;
    border-radius: 20px !important;
    font-family: inherit;
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    width: 100%;
}

.vsdmcp-form-fields {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.vsdmcp-btn-submit {
    background-color: #d6204e;
    border: none;
    color: white;
    font-family: SF Pro Text;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    vertical-align: middle;
    border-radius: 20px;
    padding: 12px 0px;
    width: 100%;
}

.vsdmcp-btn-submit:focus,
.vsdmcp-btn-submit:hover {
    background-color: #d6204e !important;
    opacity: .8;
}

.vsdmcp-error-text {
    color: #ff0000;
    font-size: 12px;
    font-weight: 400;
    margin: 4px 0 0 16px;
    line-height: 1;
}

.vsdmcp-loader {
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border-top: 4px solid #fff;
    width: 24px;
    height: 24px;
    -webkit-animation: vsdmcp-spin 1s linear infinite;
    animation: vsdmcp-spin 1s linear infinite;
    margin: auto;
}

@-webkit-keyframes vsdmcp-spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes vsdmcp-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* success popup css */
.vsdmcp-military-modal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
    background-color: rgba(0, 0, 0, .6);
    z-index: 9;
}

.vsdmcp-military-modal-content {
    background-image: url('../images/military-popup-back.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    padding: 50px 30px;
    align-items: center;
    border-radius: 18px;
    width: 600px;
}

.vsdmcp-military-modal-img {
    width: 110px;
    margin-bottom: 20px;
}

.vsdmcp-military-modal-title {
    font-family: var(--ff-very-vogue) !important;
    font-weight: 400 !important;
    font-style: italic;
    font-size: 60px !important;
    line-height: 90% !important;
    letter-spacing: 0;
    margin: 0;
    color: var(--primary-color) !important;
    margin-bottom: 30px;
}

.vsdmcp-military-modal-subtitle{
    font-family: var(--ff-halyard-display) !important;
    font-weight: 400 !important;
    font-size: 22px !important;
    line-height: 90% !important;
    letter-spacing: 0;
    margin: 0;
    color: var(--primary-color) !important;
    margin-bottom: 10px !important;
    text-align: center;
}

.vsdmcp-military-modal-desc {
    font-family: var(--ff-halyard-display);
    font-weight: 400;
    font-size: 16px;
    line-height: 110% !important;
    letter-spacing: 0;
    margin: 0;
    color: var(--primary-color);
    margin-bottom: 20px !important;
    text-align: center;
    line-height: 1;
}

.vsdmcp-military-modal-redirect-text {
    font-family: var(--ff-halyard-display);
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0;
    margin: 0;
}

@media only screen and (max-width: 600px) {

    .vsdmcp-military-modal-content {
        padding: 20px 10px;
        width: 94%;
    }

    .vsdmcp-military-modal-title {
        font-size: 40px !important;
    }
}

/* end success popup css */