@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800&display=swap');


/* Root Colors */
:root {
    --primary: #a4ca32;
    --secondary: #2D2D2D;
    --headerBar: #2D2D2D;
    --continueBtnColor: #2D2D2D;
    --stepperActive: #001f5d;
}


* {
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    min-height: 100%;
    font-family: 'Raleway', sans-serif;
}


/* .userGuide {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--headerBar);
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 500;
    text-decoration: none;
}

.userGuide:hover {
    text-decoration: none;
    color: var(--primary);
} */

.wrapper {
    display: inline-flex;
    list-style: none;
    position: fixed;
    bottom: 20px;
    right: 0px;
}

.wrapper .icon {
    position: relative;
    background: var(--continueBtnColor);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    width: 40px;
    height: 80px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
    position: absolute;
    bottom: -500px;
    right: 4px;
    font-size: 14px;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    height: fit-content;
    width: 300px;
    padding: 15px;
}

.wrapper .icon:hover .tooltip {
    top: -140px;
    right: 0px;
    opacity: 1;
    visibility: visible;
}

.wrapper .userGuide:hover,
.wrapper .userGuide:hover .tooltip,
.wrapper .userGuide:hover .tooltip::before {
    background: var(--continueBtnColor);
    color: #ffffff;
}

.help {
    font-size: 12px;
    color: white;
    font-weight: 600;
    transform: rotate(90deg);
}




/* Social Media Links Bar */
.social-links {
    width: 100%;
    height: 40px;
    background-color: var(--headerBar);
    border-bottom: 3px solid var(--primary);
}

.social-links a {
    color: var(--primary);
    margin-left: 25px;
    position: relative;
    top: 20%;
}

/* Social Media Links Bar */

/* Nav Section */
.navbar {
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

.navbar-brand img {
    width: 150px;
}

/* Nav Section */

.head-title {
    font-size: 16px;
    font-weight: 700;
}


/* Wizard Stepper */

.progressbar {
    display: flex;
    width: 100%;
}

.progressbar .item {
    position: relative;
    width: 33%;
    height: 10% !important;
    text-align: center;
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 13px 0;
    line-height: 1.5;
    background: #F5F5F5;
    color: #999999;
}

.progressbar .item a {
    color: #999999;
    text-decoration: none;
}


.progressbar .item:not(:last-child)::before,
.progressbar .item:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 100%;
    content: '';
    border: 37px solid transparent;
    border-left: 20px solid #F5F5F5;
    margin: auto;
}

.progressbar .item:not(:last-child)::before {
    margin-left: 1px;
    border-left-color: #FFF;
}



/* active */
.progressbar .item.active {
    z-index: 1;
    background: var(--stepperActive);
}

.progressbar .item.active a {
    color: white;
    text-decoration: none;
}

.progressbar .item.active:not(:last-child)::after {
    border-left-color: var(--stepperActive);

}

.progressbar .item.active:not(:last-child)::before {
    border-left: none;
}

*/
/* Wizard Stepper */


.section-heading {
    color: #2D2D2D;
}

select:disabled {
    background-color: #ededed !important;
    color: #444;
}

input[readonly] {
    background-color: #fbfbfb !important;
    color: #444;
}

input[type="file"]:disabled {
    appearance: none;
    background-color: #ededed !important;
    color: 444;
}

input[type="date"]:disabled {
    background-color: #ededed !important;
}

input[type=text] {
   /* background-color: #FAFAFA;*/
    /*border: none !important;*/
    border-bottom: 1px solid #cacaca !important;
    outline: none;
}

input[type=date] {
    background-color: #FAFAFA !important;
    border: none !important;
    border-bottom: 1px solid #cacaca !important;
}

select {
   /* background-color: #FAFAFA !important;
    border: none !important; */
    border-bottom: 1px solid #cacaca !important;
}

.buttons button {
    /* width: 100px; */
    margin-top: 35px;
}

.save-btn {
    background-color: var(--primary);
    border: none;
    color: white;
}

.save-btn:hover {
    background-color: #2D2D2D;
}

.continue-btn:hover {
    background-color: #4e4e4e !important;
}

.continue-btn {
    background-color: var(--continueBtnColor);
    border: none;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2D2D2D;
}

.browse {
    background-color: #E8E8E8 !important;
    border: none;
    border-bottom: 1px solid #cacaca !important;
    font-size: 14px;
    padding: 0 10px;
    border-radius: 2px;
}

.browse:hover {
    cursor: pointer;
}

.location-btn {
    border: none;
    border-bottom: 1px solid #cacaca !important;
    background-color: #FAFAFA !important;
}

.add-location {
    width: 50px;
}

.remove-location {
    width: 50px;
}

.search-btn {
    width: 50px !important;
}

input [type=file] {
    background-color: #FAFAFA !important;
    border: none !important;
    border-bottom: 1px solid #cacaca !important;
}

.terms {
    display: flex;
    justify-content: center;
}


input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}



.map {
    width: 100%;
    height: 300px;
}

/* Review Details */
.verified {
    width: 100px;
    height: 25px;
    font-size: 10px !important;
    background-color: #EDFFF0;
    border-radius: 100px;
    color: #2BB36B;
    padding-top: 6px;
}

/* Review Details */


/* New Nav */
.breadcrumbStepper {
    /*centering*/
    display: inline-block;
    overflow: hidden;
    border-radius: 5px;
    margin-top: 50px;
    margin-bottom: 10px;
}

.breadcrumbStepper a {
    text-decoration: none;
    outline: none;
    display: block;
    float: left;
    font-size: 12px;
    line-height: 36px;
    color: white;
    padding: 0 10px 0 40px;
    background: #333;
    position: relative;
}

.breadcrumbStepper a:first-child {
    padding-left: 26px;
    border-radius: 5px 0 0 5px;
}

.breadcrumbStepper a:first-child:before {}

.breadcrumbStepper a:last-child {
    border-radius: 0 5px 5px 0;
    padding-right: 30px;
}

/*hover/active styles*/
.breadcrumbStepper a.active,
.breadcrumbStepper a:hover {
    background: #111;
    background: linear-gradient(#333, #111);
}

.breadcrumbStepper a.active:after,
.breadcrumbStepper a:hover:after {}

.breadcrumbStepper a:after {
    content: '';
    position: absolute;
    top: 0;
    right: -18px;
    width: 36px;
    height: 36px;
    transform: scale(0.707) rotate(45deg);
    z-index: 1;
    background: #555;
    box-shadow:
        2px -2px 0 2px rgb(255, 255, 255);

    border-radius: 0 5px 0 50px;
}

.breadcrumbStepper a:last-child:after {
    content: none;
}



.flat a,
.flat a:after {
    background: #FAFAFA;
    color: #333;
    transition: all 0.7s;
}

.flat a:before {
    /* background: #111; */
    box-shadow: 0 0 0 1px #00c;
}

.flat a:hover,
.flat a.active,
.flat a:hover:after,
.flat a.active:after {
    background: var(--stepperActive);
    color: white;
    text-decoration: none;
}

@media(max-width: 480px) {
    .breadcrumbStepper {
        display: none;
    }

    .mobileBreadCrumb {
        display: block;
    }

    .govt-logo img {
        width: 25% !important;
    }
}

@media(max-width: 840px) {
    .breadcrumbStepper {
        display: none;
    }

    .mobileBreadCrumb {
        display: block;
    }

}

@media screen and (min-width: 1024px) {
    .mobileBreadCrumb {
        display: none;
    }


}

@media screen and (max-width: 767px) {
    .progressbar .item {
        font-size: 11px;
        line-height: 1.4;
        padding: 10px 0;
    }

    .progressbar .item:not(:last-child)::before,
    .progressbar .item:not(:last-child)::after {
        border-width: 25px;
        border-left-width: 12px;
    }

    .verified {
        font-size: 11px;
        padding-top: 5px;
        width: 90px !important;
    }


}



/* Mobile Stepper */
ol.stepper {
    --default-b: lightgrey;
    --default-c: black;
    --active-b: var(--stepperActive);
    --active-c: white;
    --circle: 3.5em;
    /* size of circle */
    --b: 5px;
    /* line thickness */

    display: flex;
    list-style: none;
    justify-content: space-between;
    background:
        linear-gradient(var(--default-b) 0 0) no-repeat 50% calc((var(--circle) - var(--b))/2)/100% var(--b);
    counter-reset: step;
    margin: 20px;
    padding: 0;
    font-size: 12px;
    counter-reset: step;
    overflow: hidden;
}

ol.stepper li {
    display: grid;
    /* place-items: center; */
    gap: 5px;
    font-family: sans-serif;
    position: relative;
    text-align: center;
}

ol.stepper li::before {
    content: counter(step) " ";
    counter-increment: step;
    display: grid;
    place-content: center;
    aspect-ratio: 1;
    height: var(--circle);
    border: 5px solid #fff;
    box-sizing: border-box;
    background: var(--active-b);
    color: var(--active-c);
    border-radius: 50%;
    font-family: monospace;
    z-index: 1;
}

li.item1.active::before {
    background-color: var(--stepperActive) !important;
    color: white !important;
}

ol.stepper li.active~li::before {
    background: var(--default-b);
    color: var(--default-c);
}

ol.stepper li.active::after {
    content: "";
    position: absolute;
    height: var(--b);
    right: 100%;
    top: calc((var(--circle) - var(--b))/2);
    width: 100vw;
    background: var(--stepperActive) !important;
}

/* Merchant Page */
.microHover {
    width: 300px;
    height: 300px;
    background-color: white;
    padding: 15px;
    position: absolute !important;
    z-index: 1;
    border-radius: 10px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.macroHover {
    width: 300px;
    height: 300px;
    background-color: white;
    padding: 15px;
    position: absolute !important;
    z-index: 1;
    border-radius: 10px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.microHover {
    display: none;
}

.microLabel:hover+.microHover {
    display: block;
}

.macroHover {
    display: none;
}

.macroLabel:hover+.macroHover {
    display: block;
}

.disabled-remove {
    opacity: 0.5;
    cursor: not-allowed;
}

input#expDate {
    font-size: 16px;
}

/* Country Flag */

input {
    /* width: 250px; */
    padding: 10px;
    border-radius: 2px;
    border: 1px solid #ccc;
}

input::placeholder {
    color: #BBB;
}

.iti {
    position: relative;
    display: inline-block;
    width: -webkit-fill-available !important;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type=text],
.iti--allow-dropdown input[type=tel],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=text],
.iti--separate-dial-code input[type=tel] {
    padding-right: 6px;
    padding-left: 80px !important;
    margin-left: 0;
}

.iti__selected-flag {
    padding: 0 20px 0 20px !important;
}

.form-control:focus {
    box-shadow: unset !important;
}

.form-control:focus {
    background-color: #fff;

}