body
{
    font-size: 16.96px;
}

.row {
    box-sizing: border-box !important;
}

#main {
    min-height: 75%;
}

.payment-text {
    color: #999;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 300;
}

.payment-input {
    box-sizing: initial;
    border: 1px solid #999;
    display: inline-block;
    font-size: 16px;
    height: 8px;
    padding: 4px;
    width: 100%;
}

.payment-button-container {
    text-align: center;
}

.payment-button {
    background-color: #D71793;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 300;
    height: 40px;
    margin: 20px 0;
    padding: 5px;
    text-align: center;
    width: 220px;
}

.payment-button:hover {
    color: #FFFFFF;
    text-decoration: none;
}

.payment-section-title {
    color: #d71793;
    font-size: 24px;
    font-weight: normal;
    text-align: left !important;
}

.payment-form-label {
    margin-top: 10px;
    padding-top: 0 !important;
    text-align: left !important;
}

.advertiser-succesfull-description-container {
    margin: 0 auto;
    width: 35% !important;
}

.advertiser-successfull-text {
    font-size: 1.06em;
    line-height: 1.5em;
    color: #999;
    font-family: Montserrat, sans-serif;
    font-weight: 300;
}

::-webkit-input-placeholder {
    color: rgba(215,23,147,.75) !important;
    font-size: 16px;
    font-weight: 300;
}

::-moz-placeholder {
    color: rgba(215,23,147,.75) !important;
    font-size: 16px;
    font-weight: 300;
}

:-ms-input-placeholder {
    color: rgba(215,23,147,.75) !important;
    font-size: 16px;
    font-weight: 300;
}

:-moz-placeholder {
    color: rgba(215,23,147,.75) !important;
    font-size: 16px;
    font-weight: 300;
}

.header-text {
    font-family: 'Raleway';
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0px;
    font-style: normal;
    font-size: 42px;
    text-align: center;
    font-size: 24px;
}

.form-container {
    max-width: 1600px; 
    margin: 0 auto;
}

.form-container ul li {
    text-align: left;
}

.gravity-date-select-container {
    width: 25%;
    float: left;
    margin-right: 20px;
}

.gravity-date-select-container-left {
    float: left;
    margin-right: 20px;
}

#ajax_spinner {
    display: none;
    margin-top: 10px;
}

#testPayment {
    margin-top: 15px;
}

.successfull-payment {    
    width: 50% !important;
    margin: 0 auto !important;
}


.extra-credit-card-info-container {
    display: flex; 
    flex-wrap: wrap;
}

.date-credit-card-info-container {
    width: 100%;
}

.cvv-credit-card-info-container {
    width: 100%;
}

/* ==========================================================================
   Alerts
   ========================================================================== */
.alert {
    font-family: 'Lato',sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
}

/* ==========================================================================
   Loading Animated Spinning
   ========================================================================== */
.loading-animated-icon {
    display: none;
    font-size: 3em;
    font-size: 42px;
    margin-left: 20px;
    margin-top: 20px;
    position: relative;
}

.glyphicon-refresh-animate {
    -animation: spin .7s infinite linear;
    -moz-animation: spinm .7s infinite linear;
    -ms-animation: spin .7s infinite linear;
    -webkit-animation: spinw .7s infinite linear;
}

@keyframes spin {
    from { transform: scale(1) rotate(0deg);}
    to { transform: scale(1) rotate(360deg);}
}

@-webkit-keyframes spinw {
    from { -webkit-transform: rotate(0deg);}
    to { -webkit-transform: rotate(360deg);}
}

@-moz-keyframes spinm {
    from { -moz-transform: rotate(0deg);}
    to { -moz-transform: rotate(360deg);}
}

/* ==========================================================================
   Utils
   ========================================================================== */
.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left;
}

.half-center-block {
    margin: 0 auto;
    width: 50%;
}

.no-float {
    float: none !important;
}

.display-block {
    display: block;
}

.disabled {
    background-color: #DCDCDC !important; 
}
/* ==========================================================================
   Text
   ========================================================================== */

.text-bold {
    font-weight: bold !important;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

/* Tablet */
@media only screen and (min-width : 768px) {
    .header-text {
        font-size: 42px;
    }

    .payment-button {
        width: 220px;
    }

    .payment-input {
        width: 435px;
        height: 38px;
    }

    .payment-button {
        float: left;
    }

    .loading-animated-icon-container {
        float: left;
    }
    .gravity-select-parent {
        width: 45%;
    }
}

/* Desktop small */
@media only screen and (min-width : 1024px) {
    .form-group {
        align-items: center;
        display: flex;
    }

    .payment-form-label {
        margin: 0 !important;
        width: 125px;
    }

    .payment-text {
        line-height: 1.5em;
    }

    .payment-form-container {
        margin: 0 auto;
        width: 50%;
    }

    .date-credit-card-info-container {
        width: 50%; 
        text-align: right;
    }

    .cvv-credit-card-info-container {
        width: 50%; 
        text-align: left;
    }
    .gravity-select-parent {
        width: 40%;
    }
}

/* Desktop large */
@media only screen and (min-width : 1200px) {
    .payment-text {
        font-size: 1.06em;
    }

    .payment-form-label {
        font-size: 18px;
        padding-top: 0 !important;
    }

    .text-center-only-mobile {
        text-align: initial;
    }

    .payment-button {
        width: 220px;
    }
}


@media only screen and (min-width: 641px) {
    .gform_footer {
        width: 50% !important;
        margin: 0 auto !important;
    }
}


@media (min-width: 320px) and (max-width: 680px) {
  .half-input {
    width: 100%;
  }
  
}
