@font-face {
    font-family: 'helvetical-regular';
    src: url(./fonts/Helvetica.ttf);
}

body {
    font-family: 'helvetical-regular' !important;
}

.table td, .table th {
    border-color: rgb(255 255 255 / 8%) !important;
}

.table thead th {
    border-bottom: 1px solid rgb(255 255 255 / 8%) !important;
    border-top: 0px !important;
}

.table thead th {
    font-size: .625rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1rem;
    color: rgb(153 159 164);
    white-space: nowrap;
}

.form-control {
    --tblr-border-color: rgb(255 255 255 / 8%);
    background-color: transparent !important;
    border-color: var(--tblr-border-color) !important;
    border-radius: 13px !important;
    height: 50px !important;
}

label {
    font-size: 1rem;
}

select.form-control {
    color: #fff !important;
    background-color: #10082e !important;
}

.form-label {
    color: rgb(153 159 164);
    font-size: 1rem;
    font-weight: 500;
}

.btn-primary {
    width: 100px;
    background: #04a1ff;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px !important;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

.bg-pink {
    background: rgba(214,51,108) !important;
    border-color: rgba(214,51,108) !important;
}

.table {
    display: table;
}

.table-cell {
    display: table-cell;
}

.page-header {
    display: flex;
    flex-wrap: wrap;
    min-height: 2.25rem;
    flex-direction: column;
    justify-content: center;
}

.page-header {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgb(255 255 255 / 4%);
    margin: 1.5rem 0 0;
}

#msform {
    text-align: center;
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
}

    #msform fieldset {
        border: 1px solid rgb(255 255 255 / 4%);
        border-radius: 13px;
        padding: 20px 30px;
        box-sizing: border-box;
        width: 80%;
        margin: 0 10%;
        position: relative;
    }

        #msform fieldset:not(:first-of-type) {
            display: none;
        }

    #msform input, #msform textarea {
        padding: 15px;
        border: 1px solid #ccc;
        border-radius: 0px;
        margin-bottom: 10px;
        width: 100%;
        box-sizing: border-box;
        font-family: 'helvetical-regular';
        color: #2C3E50;
        font-size: 13px;
    }

        #msform input:focus, #msform textarea:focus {
            -moz-box-shadow: none !important;
            -webkit-box-shadow: none !important;
            box-shadow: none !important;
            outline-width: 0;
            transition: All 0.5s ease-in;
            -webkit-transition: All 0.5s ease-in;
            -moz-transition: All 0.5s ease-in;
            -o-transition: All 0.5s ease-in;
        }

    #msform .action-button {
        width: 100px;
        background: #04a1ff;
        font-weight: bold;
        color: white;
        border: 0 none;
        border-radius: 25px;
        cursor: pointer;
        padding: 10px 5px;
        margin: 10px 5px;
    }

    #msform .action-button-previous {
        width: 100px;
        background: rgba(214,51,108);
        font-weight: bold;
        color: white;
        border: 0 none;
        border-radius: 25px;
        cursor: pointer;
        padding: 10px 5px;
        margin: 10px 5px;
    }


.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 15px;
    margin-bottom: 20px;
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    counter-reset: step;
}

    #progressbar li {
        list-style-type: none;
        text-transform: uppercase;
        font-size: 13px;
        width: 25%;
        float: left;
        position: relative;
        letter-spacing: 1px;
    }

        #progressbar li:before {
            content: counter(step);
            counter-increment: step;
            width: 24px;
            height: 24px;
            line-height: 26px;
            display: block;
            font-size: 12px;
            background: rgb(62 121 236 / 10%);
            color: #fff;
            border-radius: 25px;
            margin: 0 auto 10px auto;
        }

body.theme-dark #progressbar li:before {
    background: rgb(62 121 236 / 10%);
    color: #fff;
}

#progressbar li:after {
    content: '';
    width: 98%;
    height: 2px;
    background: rgb(255 255 255 / 4%);
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1;
}

#progressbar li:first-child:after {
    content: none;
}

#progressbar li.active:before, #progressbar li.active:after {
    background: #04a1ff !important;
    color: white;
}

.dme_link {
    margin-top: 30px;
    text-align: center;
}

    .dme_link a {
        background: #FFF;
        font-weight: bold;
        color: #ee0979;
        border: 0 none;
        border-radius: 25px;
        cursor: pointer;
        padding: 5px 25px;
        font-size: 12px;
    }

        .dme_link a:hover, .dme_link a:focus {
            background: #C5C5F1;
            text-decoration: none;
        }

.bg-custom {
    background: rgb(62 121 236 / 10%) !important;
}

ul.payment_method_list li {
    list-style-type: none;
    background: rgb(62 121 236 / 10%) !important;
    margin-bottom: 10px;
    border-radius: 13px;
    padding: 10px;
}

.payment_method_item input {
    width: unset !important;
}

.vh-80 {
    height: 80vh;
}

.text-blue {
    color: #04a1ff !important;
}


@media screen and (max-width: 600px) {

    #progressbar {
        padding-left: 0px;
    }

        #progressbar li {
            font-size: .5rem;
        }

    #msform fieldset {
        width: 100% !important;
        margin: 0 auto !important;
    }

    ul.payment_method_list {
        padding: 0px !important;
    }

    .border-sm {
        border-bottom: 1px solid #04a1ff;
        padding-bottom: 10px;
    }

    #msform fieldset {
        padding-left: 10px;
        padding-right: 10px;
    }

    .g-sm-10 {
        gap: 10px;
    }
}
