/*--- Cookies Style ---*/

#cookiebanner-exp {
    background: #fff;
    position: fixed;
    bottom: 0;
    padding: 25px 10px;
    text-align: left;
    display: flex;
    align-items: center;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    width: 100%;
}

@media only screen and (max-width: 767px) {
    #cookiebanner-exp {
        display: block;
    }

    .cookies-btns {
        margin-top: 20px;
    }
}

#cookiebanner-exp p {
    margin: auto;
}

#cookiebanner-exp p a {
    text-decoration: underline !important;
    font-weight: 700;
    font-family: "Source Sans Pro", sans-serif;
}

#cookiebanner-exp h3 {
    font-size: 20px;
    font-weight: 700;
}

.cookies-btns a {
    padding: 12px 10px;
    color: #fff;
    font-size: 15px;
    width: 100%;
    display: inline-block;
    text-align: center;
}

.cookies-btns .all-cookies-btn {
    background: #1c6eb7;
}

.cookies-btns .cookies-settings-btn {
    background: #353535;
}

.modal-dialog {
    z-index: 9999;
}

.check-btns {
    margin: 30px 0 0 0;
}

.check-btns input[type="checkbox"] {
    height: 0;
    width: 0;
    visibility: hidden;
}

.check-btns label {
    cursor: pointer;
    text-indent: -9999px;
    width: 40px;
    height: 20px;
    background: grey;
    display: block;
    border-radius: 100px;
    position: relative;
    float: left;
    margin-right: 10px;
}

.check-btns label:after {
    content: "";
    position: absolute;
    top: 3px;
    left: 2px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 90px;
    transition: 0.3s;
}

.check-btns input:checked+label {
    background: #1c6eb7;
}

.check-btns input:checked+label:after {
    left: calc(100% - 2px);
    transform: translateX(-100%);
}

.cookies-settings-wrapper {
    padding: 10px;
}

.cookies-settings-wrapper p {
    font-size: 14px;
    /* font-weight: 600; */
    line-height: 24px;
    margin: 15px 0;
}

.cookies-settings-wrapper a {
    color: #111;
    font-size: 16px;
    font-family: "Source Sans Pro";
    text-decoration: underline !important;
    width: 100%;
}

.cookies-settings-wrapper button {
    display: block;
    background: #111;
    color: #fff;
    font-size: 16px;
    border: none;
    padding: 10px 15px;
    margin: 15px 0;
    font-weight: 600;
}

.alg-txt {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.alg-txt h4 {
    text-align: left;
    margin: 0 0 5px 0;
    font-family: "Source Sans Pro", Arial;
}

.alg-txt p {
    margin: 0 0 15px 0;
}

.cookie-modal {
    max-height: 700px;
    overflow: auto;
}

.cookie-modal .nav-tabs {
    margin: 15px 0 0 0;
}

.cookie-modal .nav-tabs li a,
.cookie-modal .nav-tabs>li.active>a,
.cookie-modal .nav-tabs>li.active>a:focus,
.cookie-modal .nav-tabs>li.active>a:hover {
    font-size: 18px;
    font-weight: 800;
    padding: 7px 15px;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
    color: #555;
    cursor: default;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
}

.cookie-modal table tbody tr td {
    background: #eee;
    color: #333;
}

.cookie-modal table {
    margin-bottom: 35px;
}

.cookie-modal table th {
    font-family: "Source Sans Pro";
}

.cookie-modal table th,
.cookie-modal table td {
    text-align: left;
    padding: 15px 15px 10px;
}

.cookie-modal table tbody tr td[colspan] {
    padding-top: 5px;

    text-align: left;
}

.cookie-modal table tbody tr td p {
    background: #fff;
    padding: 10px;
    margin: 0;
}

.cookie-modal h3 {
    font-size: 20px;
    font-family: "Source Sans Pro", Arial;
    margin: 20px 0 -5px 0;
}

.modal-title {
    font-family: 'Source Sans Pro', Arial;
    font-size: 21px;
}


.save-settings-btn {
    background: #1c6eb7;
    color: #fff;
    font-size: 16px;
    font-family: 'Rajdhani', Arial;
    padding: 12px 25px;
    float: left;
}


.save-settings-btn:hover {
    color: #fff;
}

.mb-1 {
    margin-bottom: 5px;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.ms-auto {
    margin-left: auto;
}