html {
    font-size: 14px;
}

.text-theme {
    color: #d1e7fe80 !important;
}

.bg-theme {
    background-color: #172430;
}

.fs-small {
    font-size: .875rem;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    padding-top: 25px;
    margin-bottom: 60px;
    font-family: Cambria, Cochin, Georgia, Times, Times New Roman, serif;
}

@font-face {
    font-family: 'icobase';
    src: url('fonts/icobase.eot?ffook9');
    src: url('fonts/icobase.eot?ffook9#iefix') format('embedded-opentype'), url('fonts/icobase.ttf?ffook9') format('truetype'), url('fonts/icobase.woff?ffook9') format('woff'), url('fonts/icobase.svg?ffook9#icobase') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="ico-"], [class*=" ico-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icobase' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ico-arrow-r:before {
    content: "\e900";
}

.ico-bar:before {
    content: "\e901";
}

.ico-close:before {
    content: "\e902";
}

.ico-cloud:before {
    content: "\e903";
}

.ico-eye:before {
    content: "\e904";
}

.ico-mail-bird:before {
    content: "\e905";
}

.ico-play:before {
    content: "\e906";
}

.ico-pt-logo:before {
    content: "\e907";
}

.ico-search:before {
    content: "\e908";
}
/*---------------------*/
/*Header*/
/*---------------------*/
.socialIcons {
    transition: filter 0.3s;
    height: 18px !important;
    width: auto;
}

    .socialIcons:hover {
        filter: brightness(1.2);
    }

.logo {
    height: 60px !important;
    width: auto;
}

/* Home */
.select-menu {
    max-width: 330px;
    margin: 50px auto;
    position: relative;
}

.select-menu .select-btn {
    margin: 0;
    padding: 0;
    min-width: 150px;
    border-radius: 15px;
    display: flex;
    background: #fff;
    gap: 1em;
    align-items: center;
    cursor: pointer;
    justify-content: space-around;
    box-shadow: inset 0 0 0px 1px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.nav-link {
    color: #d1e7fe80 !important;
}
.select-menu .options {
    display: none;
    box-sizing: border-box;
    min-width: 150px;
    position: absolute;
    overflow-y: auto;
    max-height: 295px;
    margin-top: 5px;
    background: #fff;
    box-shadow: 0 0 0px 1px rgba(0, 0, 0, 0.1);
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    animation-duration: 0.35s;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.35s;
    -webkit-animation-fill-mode: both;
}

.select-menu .options .option {
    display: flex;
    cursor: pointer;
    padding: 5px 25px;
    align-items: center;
    background: #fff;
}

.select-menu .options .option:hover {
    background: #f2f2f2;
}

.select-menu .options .option i {
    margin-right: 12px;
}

.select-menu .options .option .option-text {
    color: #333;
}

.select-btn i {
    font-size: 25px;
    transition: 0.3s;
}

.select-menu.active .select-btn i {
    transform: rotate(-180deg);
}

.select-menu.active .options {
    display: block;
    opacity: 0;
    z-index: 10;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
    animation-duration: 0.4s;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 30px, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }

    to {
        transform: translate3d(0, 20px, 0);
        opacity: 0;
    }
}
/* Search modal */
.modal-content-search {
    background-color: white;
    border-radius: 20px;
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}
/*layout*/

.redLinks a {
    color: #DC3545 !important;
}
    .redLinkshover a:hover {
        color: #DC3545 !important; /* Change color to red on hover */
    }


.image_wrapper {
    max-height: 150px;
}

.era_selection_wrapper {
    max-height: 40px;
}

.power_by_logo_wrapper {
    max-height: 40px;
}