.old_price{
    color: rgb(177 177 177);
    text-decoration: line-through;
}
.pricing_details{
    color: #cba200;
    font-size: 0.8em;
}
/* mobile */
.checkout_top{
    padding: 2vh;
    padding-top: 3vh;
    height: 10vh;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}
.checkout_content{
    height: 80vh;
}
.checkout_bottom{
    height: 10vh;
    position: relative;
    bottom: 5vh;
}
.button.back{
    float: left;
    margin-left: 5vw;
    width: 8vw;
    min-width: 71px;
    max-width: 150px;
    height: 6vh;
    min-height: 36px;
    max-height: 76px;
}
.button.next{
    float: right;
    margin-right: 5vw;
    color: white;
    width: 8vw;
    min-width: 71px;
    max-width: 150px;
    height: 6vh;
    min-height: 36px;
    max-height: 76px;
}

@media only screen and (min-width: 769px) {
    /* desktop */
    .checkout_top{
        padding: 2vh;
        padding-top: 2.5vh;
        height: calc(8vh - 10%);
        border-top-right-radius: 4px;
        border-top-left-radius: 4px;
    }
    .checkout_content{
        height: 70vh;
    }
    .checkout_bottom{
        height: 10vh;
    }
}

.hr.checkout{width: calc(100% - 5vw)}
.notification.checkout{
    width: calc(100% - 5vw);
    padding: 2vh;
    background-color: #f5f5f56b;
    font-size: 1em;
}
.input.checkout{
    border-radius: 10px !important;
    width: calc(100% - 5vw);
    min-width: 280px;
    /*max-width: 420px;*/
    height: 8vh;
    max-height: 50px;
    padding: 1.5vh;
    margin-bottom: 2vh;
}
.white{
    color: white !important;
}
.bold{
    font-weight: 600;
    line-height: 1.125;
    font-weight: 600;
    letter-spacing: .004em;
}
.gradientAnimated{
    background: linear-gradient(241deg, #00e2ff, #0050ff, #eb00ff);
    background-size: 600% 600%;
    -webkit-animation: gradientAnimation 10s ease infinite;
    animation: gradientAnimation 10s ease infinite;
}
.gradientAnimatedSuccess{
    background: linear-gradient(90deg, #0050ff, #00c571, #12cb3e);
    background-size: 600% 600%;
    -webkit-animation: gradientAnimationSuccess 2s ease;
    animation: gradientAnimationSuccess 2s ease;
    background-position:100% 100%
}
@-webkit-keyframes gradientAnimation {
    0%{background-position:71% 0%}
    50%{background-position:30% 100%}
    100%{background-position:71% 0%}
}
@keyframes gradientAnimation {
    0%{background-position:71% 0%}
    50%{background-position:30% 100%}
    100%{background-position:71% 0%}
}
@-webkit-keyframes gradientAnimationSuccess {
    0%{background-position:0% 0%}
    100%{background-position:100% 100%}
}
@keyframes gradientAnimationSuccess {
    0%{background-position:0% 0%}
    100%{background-position:100% 100%}
}


.fadeOutFast{
    opacity: 0;
    animation: fadingOut 0.3s ease;
    -webkit-animation: fadingOut 0.3s ease;
}
@keyframes fadingOut{
    0%{opacity: 1}
    100%{opacity: 0}
}
@-webkit-keyframes fadingOut{
    0%{opacity: 1}
    100%{opacity: 0;}
}
.fadeInFast{
    opacity: 1;
    animation: fadingIn 0.3s ease;
    -webkit-animation: fadingIn 0.3s ease;
}
@keyframes fadingIn{
    0%{opacity: 0}
    100%{opacity: 1}
}
@-webkit-keyframes fadingIn{
    0%{opacity: 0}
    100%{opacity: 1}
}

.checkout_final_box{
    border-top: 1px solid #d2d2d7;
    width: 95%;
}
.checkout_final_mainText{
    font-weight: 600;
    font-size: 1.45em;
    margin-bottom: 0.2em;
}
.checkout_final_subText{
    font-size: 1.1em;
}
/* small mobile screens only*/
@media only screen and (max-height: 568px) {
    .checkout_final_subText{
        font-weight: 600;
        font-size: 1.45em;
    }
    .checkout_entered_box{
        line-height: 1.2;
    }
    .checkout_final_mainText{display: none}
}

.radio-field {
    height: 60px;
    border: 1px solid #d2d2d7;
    border-radius: 10px;
    align-items: center;
    padding: 10px;
    margin-right: 5vw;
}

.field {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Pushes content to edges */
    padding: 10px 15px;
}

.radio-text {
    margin-left: 5px;
    font-weight: 500;
}

.radio-field.active{
    border: 1.5px solid #3273dc;
    box-shadow:0 0 0 .125em rgba(50,115,220,.25);
}

.payment-icon-block {
    display: flex;
    gap: 5px;
}

.payment-icon {
    width: 30px;
    height: auto;
}

.field {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-field label {
    display: flex;
    align-items: center;
    margin-right: 10px;
}