:root {
    --theme-main-blue-color : #044E9F;
    --theme-main-orange-color : #f26e24;
}

@font-face {
    font-family: "Gotham Book";
    src: url('../fonts/Gotham_Book.otf');
}

* {
    box-sizing: border-box;
}

html {
    position: relative;
    min-height: 100%;
}

html,body {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    font-family: 'Gotham Book', sans-serif;
}

.form-control,.form-select {
    border-color: var(--theme-main-orange-color);
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0px 0px 0px 1px var(--theme-main-orange-color);
}

.form-check-input:checked {
    background-color: var(--theme-main-orange-color);
    border-color: var(--theme-main-orange-color);
}

.form-check-label {
    user-select: none;
}

.orange-bg {
    background-color: var(--theme-main-orange-color);
    color: #fff;
}

.text-blue-color {
    color: var(--theme-main-blue-color);
}

.text-dark-blue-color {
    color: var(--theme-main-dark-blue-color);
}

.text-orange-color {
    color: var(--theme-main-orange-color);
}

.theme-blue-btn {
    background-color: var(--theme-main-blue-color);
    color: #fff;
    border: 1px solid var(--theme-main-blue-color);
    transition: .2s ease-in-out background-color;
}

.theme-blue-btn:hover {
    color: var(--theme-main-blue-color);
    background-color: #fff;
    border: 1px solid var(--theme-main-blue-color);
}

.theme-orange-btn {
    background-color: var(--theme-main-orange-color);
    color: #fff;
    border: 1px solid var(--theme-main-orange-color);
    transition: .2s ease-in-out background-color;
}

.theme-orange-btn:hover {
    color: var(--theme-main-orange-color);
    background-color: #fff;
    border: 1px solid var(--theme-main-orange-color);
}

.theme-black-btn {
    color: #fff;
    background-color: #1d1d1d;
    border: 1px solid #1d1d1d;
    transition: .2s ease-in-out background-color;
}

.theme-black-btn:hover {
    background-color: #fff;
    color: #1d1d1d;
    border: 1px solid #1d1d1d;
}

.card {
    box-shadow: 4px 4px 8px 0px #00000040;
}

.wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100vh;
}

.bg {
    background-image: url('../img/bg.jpg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    width: 100%;
    flex-grow: 1;
}

/*.header-bg {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    margin-bottom: 2.5rem;*/
/*}*/

.header-bg {
    position: relative;
    width: 100%;
    margin-bottom: 2.5rem;
    background-image: url('../img/header-img.jpg');
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    height: 15rem;
}

.sumo-logo {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
}

.safety-card-area .n-mt-md-5{
    margin-top: -5rem;
    z-index: 1;
}

.safety-card-area{
    position:relative;
    z-index:1;
}

/* Change the background color of the dropdown */
.bootstrap-select .dropdown-toggle {
    background-color: #fff;
    color: #000;
    max-height: 40px;
    border: 1px solid var(--theme-main-orange-color);
}

.bootstrap-select .dropdown-toggle:focus {
    outline: none!important;
}

/* Customize the dropdown arrow */
.bootstrap-select .dropdown-toggle .caret {
    border-top: 5px solid #fff;
}

.title-border-right {
    border-right: 2px solid #000;
}

/*.footer-bg {*/
/*    width: 100%;*/
/*    position: relative;*/
/*    margin-top: 2.5rem;*/
/*}*/

.footer-bg {
    width: 100%;
    position: relative;
    margin-top: 2.5rem;
    background-image: url('../img/footer-img.jpg');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    height: 15rem;
}

.alkem-logo {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
}

.count-card {
    border-radius: 3rem 3rem 0 0;
    border: 0;
    background-color: var(--theme-main-orange-color);
}
.count-card .card-body {
    background-color: #fff;
}
.count-card .card-header,
.count-card .card-body {
    border-radius: 3rem 3rem 0 0;
    border: 0;
}
.progressbar {
    background: linear-gradient(90deg, #ABC1C9 -29.25%, #C4E0E8 -28.74%);
    width: 100%;
    height: 20px;
    position: relative;
    border-radius: 20px;
}
.progressbar:before {
    position: absolute;
    top: 8.6%;
    left: 1%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    content: '';
    background: linear-gradient(136.99deg, #F6F7F9 -289.51%, #EBF2F5 -287.85%, #D0E4EA -285.02%, #CBE2E8 -284.47%);
    z-index: 1;
}
.progressbar .bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 50%;
    border-radius: 20px;
    content: '';
    background-color: #00A87A;
}
.state-name {
    font-size:0.85rem;
}

.state-sumo-logo {
    position: absolute;
    right: 10%;
    bottom: 15%;
}

.state-alkem-logo {
    position: absolute;
    right: 3%;
    top: 15%;
}

.input-group-text{
    border-color: var(--theme-main-orange-color);
    background-color: transparent;
}

@media(max-width:991px) {
    .title-border-right {
        border-right: 0;
    }
    .alkem-logo {
        top: -50px;
    }
}

@media(max-width: 767px) {
    .option-list-group .option-list-group-item input {
        width: 3em;
        height: 1.2em;
    }
    .safety-card-area .n-mt-md-5 {
        margin-top: -1rem;
    }
    .sumo-logo img, .state-sumo-logo img {
        width: 50%;
    }
    .alkem-logo {
        top: -50px;
    }
    .alkem-logo img, .state-alkem-logo img {
        width: 50%;
    }
}