﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification\ 
for details on configuring this project to bundle and minify static web assets. */

:root {
    --reveiewBgColor: #fff9f2;
}

@font-face {
    font-family: 'Muli';
    src: url('../fonts/Muli/Muli.ttf');
}

@font-face {
    font-family: 'Muli-Black';
    src: url('../fonts/Muli/Muli-Black.ttf');
}

@font-face {
    font-family: 'Muli-BlackItalic';
    src: url('../fonts/Muli/Muli-BlackItalic.ttf');
}

@font-face {
    font-family: 'Muli-Bold';
    src: url('../fonts/Muli/Muli-Bold.ttf');
}

@font-face {
    font-family: 'Muli-BoldItalic';
    src: url('../fonts/Muli/Muli-BoldItalic.ttf');
}

@font-face {
    font-family: 'Muli-ExtraBold';
    src: url('../fonts/Muli/Muli-ExtraBold.ttf');
}

@font-face {
    font-family: 'Muli-ExtraBoldItalic';
    src: url('../fonts/Muli/Muli-ExtraBoldItalic.ttf');
}

@font-face {
    font-family: 'Muli-ExtraLight';
    src: url('../fonts/Muli/Muli-ExtraLight.ttf');
}

@font-face {
    font-family: 'Muli-ExtraLightItalic';
    src: url('../fonts/Muli/Muli-ExtraLightItalic.ttf');
}

@font-face {
    font-family: 'Muli-Italic';
    src: url('../fonts/Muli/Muli-Italic.ttf');
}

@font-face {
    font-family: 'Muli-Light';
    src: url('../fonts/Muli/Muli-Light.ttf');
}

@font-face {
    font-family: 'Muli-LightItalic';
    src: url('../fonts/Muli/Muli-LightItalic.ttf');
}

@font-face {
    font-family: 'Muli-Regular';
    src: url('../fonts/Muli/Muli-Regular.ttf');
}

@font-face {
    font-family: 'Muli-SemiBold';
    src: url('../fonts/Muli/Muli-SemiBold.ttf');
}

@font-face {
    font-family: 'Muli-SemiBoldItalic';
    src: url('../fonts/Muli/Muli-SemiBoldItalic.ttf');
}

@font-face {
    font-family: 'Muli-Semi-BoldItalic';
    src: url('../fonts/Muli/Muli-Semi-BoldItalic.ttf');
}

:root {
    --tabcolor: #2c66a7;
    --backcolor: #ecf0f2;
    --buttonstartcolor: #435294;
    --buttonendcolor: #07AFF0;
    --primary: #2c66a7;
}

body {
    font-family: Muli !important;
    padding-top: 50px;
    padding-bottom: 20px;
    color: #313943;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}

/* Custom */
.div-cardType {
    float: right;
    cursor: pointer;
    width: 32%;
    max-width: 150px;
    display: flex;
}

.cardType {
    width: 100%;
    max-width: 150px;
}

.rounded {
    border-radius: 1rem
}

.card{
    border-top-left-radius: 2px !important;
    border-top-right-radius: 2px !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;    
}

.card-header {
    /*height: 60px !important;*/
}

.card-highlight {
    border: 1px solid rgba(55,172,223,0.6) !important;
    border-radius: 2px !important;
    box-shadow: 0 0 2.5px 1px rgba(55,172,223,0.4) !important;
}

.card-header section > div:not(.collapsed) {
    color: #232323 !important;
    background-color: rgb(244, 244, 244) !important;
}

.card-header section > div.collapsed {
    background-color: #FFF !important;
}

.nav-pills .nav-link {
    color: var(--tabcolor);
}

    .nav-pills .nav-link.active {
        color: white
    }

.disabled {
    opacity: 0.3 !important;
    cursor: not-allowed;
}

body {
    padding-top: 20px !important;
}

/*.display-4 {
            font-size: 2.5rem !important;
        }*/

/* New Design */

body {
    background-color: var(--backcolor);
}

.card {
    border-radius: 6px;
    background-color: #FFFFFF;
    box-shadow: 0 5px 10px -5px rgba(171,195,206,0.2);
    border: none;
}

.terms-conditions-box {
    height: 59px;
}

.warning-text {
    color: #708792;
    font-family: Muli;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 17px;
}

/* This css is for normalizing styles. You can skip this. */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.new {
    padding: 50px;
}

/**/
.styled-checkbox {
    position: absolute;
    opacity: 0;
}



    .styled-checkbox + label {
        position: relative;
        cursor: pointer;
        padding: 0;
    }

        .styled-checkbox + label:before {
            content: "";
            margin-right: 10px;
            display: inline-block;
            vertical-align: text-top;
            width: 20px;
            height: 20px;
            background: white;
            border: 2px solid var(--buttonstartcolor);
            border-radius: 5px;
        }

    .styled-checkbox:hover + label:before {
        background: #FFFFFF;
    }

    .styled-checkbox:focus + label:before {
        box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
    }

    .styled-checkbox:checked + label:before {
        background: var(--buttonstartcolor);
    }

    .styled-checkbox:disabled + label {
        color: #b8b8b8;
        cursor: auto;
    }

        .styled-checkbox:disabled + label:before {
            box-shadow: none;
            background: #ddd;
        }

    .styled-checkbox:checked + label:after {
        content: "";
        position: absolute;
        left: 5px;
        top: 9px;
        background: white;
        width: 2px;
        height: 2px;
        box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
        transform: rotate(45deg);
    }
/**/
.nav-pills .nav-link {
    border: 1.3px solid var(--tabcolor);
    border-radius: 0 !important;
    cursor: not-allowed;
}

    .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        border: 1.3px solid var(--tabcolor);
        background-color: var(--tabcolor) !important;
    }

.custom-bold {
    font-size: 18px;
    font-family: 'Muli-SemiBold';
}

.fs-28 {
    font-size: 28px;
}

.fs-24 {
    font-size: 24px;
}

.fs-22 {
    font-size: 22px;
}

.fs-20 {
    font-size: 22px;
}

.fs-18 {
    font-size: 18px;
}

.fs-16 {
    font-size: 16px;
}

.fs-15 {
    font-size: 15px;
}

.fs-14 {
    font-size: 14px;
}

.fs-12 {
    font-size: 12px;
}

.fs-11 {
    font-size: 11px;
}

.tab-header {
    padding-left: 20px;
}

.font-regular {
    font-family: Muli-Regular;
}

.font-light {
    font-family: Muli-Light;
}

.font-semibold {
    font-family: Muli-SemiBold;
}

.font-bold {
    font-family: Muli-Bold;
}

@media only screen and (min-width: 981px) {

    .submit-form {
        background-color: transparent !important;
        margin-top: 5px !important
    }

        .submit-form .btn-submit, .submit {
            width: 100%;
            margin: 5px 0 5px 0;
            height: 45px;
            border-radius: 0px !important;
        }

        .submit-form .cancel, .cancel {
            border-radius: 0px !important;
            background-color: #FFFFFF !important;
            float: left;
            width: 100%;
            border: solid 1px var(--tabcolor);
            margin: 5px 0 5px 0;
            height: 45px;
        }
        .submit-form .backtoinvoice {
            border-radius: 0px !important;
            width: 100%;
            margin: 5px 0 5px 0;
            height: 45px;
            border-radius: 0px !important;
        }

    apple-pay-button {
        float: right !important;
        width: 100% !important;        
        height: 45px !important;
        border-radius: 0 !important
    }

        .apple-pay-btn {
            height: 45px !important;
        }

        .apple-pay {
            border-radius: 0px !important;
            width: 100%;
            margin: 5px 0 5px 0;
            height: 45px;
        }

    .terms-conditions-box {
        background-color: transparent;
        border: none !important;
        text-align: center;
    }
}

@media only screen and (max-width: 980px) {
    .submit-form {
        height: 70px;
        position: fixed !important;
        bottom: 0%;
        width: 100%;
        opacity: 1;
        left: 50%;
        transform: translateX(-50%);
        background-color: #FFF;
        /*box-shadow: 0 5px 10px -5px rgba(171,195,206,0.2);*/
        border: none !important;
    }

        .submit-form .btn-submit {
            width: 49%;
            max-width: 300px;
            float: left;
            margin: 0 0 0 0;
            height: 37px;
            border-radius: 0 !important;
            line-height:0.8;
        }

        .submit-form .cancel {
            border-radius: 0 !important;
            background-color: #FFFFFF !important;
            float: left;
            width: 49%;
            border: solid 1px var(--tabcolor);
            margin: 0 5px 0 0;
            height: 37px;
            line-height: 0.8;
        }
        .submit-form .backtoinvoice {
            width: 100%;
            max-width: 350px;
            float: left;
            margin: 0 5px 0 0;
            height: 37px;
            border-radius: 0 !important;
            line-height: 0.8;
        }

    .apple-pay {
        border-radius: 0 !important;
        width: 49%;
        max-width: 300px;
        float: right;
        height: 37px;
        line-height: 0.8;
    }

    apple-pay-button {
        float: right !important;
        max-width: 300px !important;
        width: 49%;
        max-height: 37px !important;
        border-radius: 0 !important; 
        line-height: 0.8;
    }

    .modal-footer .cancel {
        border-radius: 25px;
        background-color: #FFFFFF !important;
        float: left;
        width: 45%;
        border: solid 1px var(--tabcolor);
        margin: 5px;
        /*height: 45px;*/
    }

    .terms-conditions-box {
        position: fixed;
        bottom: 70px;
        background-color: transparent;
        left: 0;
        border: none !important;
        text-align: center;
    }
    .caption-tnc {
        position: fixed;
        bottom: 65px;
        background-color: #FFF;
        padding-top: 5px !important;
        left:0;
    }
    .payment-option-section {
        /*position: relative;*/
        bottom: 35px;
        margin-top: 20px;
    }
    .section-buttons {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        padding-top: 0.5rem !important;
    }
}

.small-info {
    color: #858F99;
    font-size: 11px;
}

.amount {
    font-family: Muli-SemiBold;
    font-size: 24px;
}

.currency {
    color: #858F99;
    font-size: 12px;
}

.caption-tnc {
    color: #858F99;
    font-family: Muli;
    font-size: 14px;
    line-height: 1.2;
    text-indent: 0px;
    text-align: center;
    margin-top: 10px;
    padding: 0 5px
}

/*.payment-block {
    display: none;
}*/

.display-none {
    display: none !important;
}

.display-block {
    display: block !important;
}

.description {
    color: #858F99;
    font-size: 13px;
    line-height: 18px;
}

.btn {
    border-radius: 30px !important;
}

.btn-submit {
    background: linear-gradient(134.96deg, var(--buttonstartcolor) 0%, var(--buttonendcolor) 100%);
    box-shadow: 0 24px 48px 0 rgba(187,187,187,0.5);
    border: none;
}

.submit-form div {
    position: relative !important;
}

.link {
    color: #313943 !important;
}

.apple-pay {
    background-color: #000000;
    border-radius: 0;
    padding: 0px;
    box-sizing: border-box;    
    border: 0;
    color: #FFF;
}
.greyscale {
    filter: grayscale(100%);
}

@media only screen and (max-width: 980px) {
    .review-web {
        display: none;
    }
    .review-mobile {
        display: block;
    }
}

@media only screen and (min-width: 981px) {
    .review-web {
        display: block;
    }
    .review-mobile {
        display: none;
    }
}
.review-bottom-border {
    border-bottom: solid 1px #E6E6E6;
}

    .review-bottom-border:last-child {
        border-bottom: none;
    }

.card-header section > div.collapsed {
    color: #232323 !important;
}

.review-card {
    border-radius: 6px 6px 0 0;
    background-color: var(--reveiewBgColor) !important;
    box-shadow: 0 5px 10px -5px rgba(171,195,206,0.2);
}

.payment-summary {
    padding: 20px 20px 20px 20px;
}

.arrow {
    border: solid 1px #0DA4E5;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    cursor: pointer;
}

.review-colapse {
    color: #0DA4E5;
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    color: #979797;
}

.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    color: #979797;
}