.resources {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height) - 380px);
}
#footer-top {
    display: none;
}
.subheading {
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 22px;
    color: var(--text-color);
    margin-bottom: 0;
}
.categories-title {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #8A8A8A;
    margin-bottom: 1rem;
}
.resources .categories-list .nav-link {
    height: 52px;
    border-radius: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: var(--text-color);
    padding: 0 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    background: none;
    width: 100%;
}
.resources .categories-list .nav-link.active,
.resources .categories-list .nav-link:hover {
    background: rgba(249, 151, 7, 0.1);
    font-weight: 700;
    color: var(--color);
}
.resources .filter-btn {
    background: none;
    border:none;
    outline: none;
    cursor: default;
}
.resources .filter-btn .filter-icon,
.resources .filter-btn .close-filter-icon {
    display: none;
}
.resources .select-container {
    width: 240px;
    margin-left: auto;
}
.resources .form-control {
    height: 50px;
    background: #F7F7F7;
    border-radius: 8px;
    border: none;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: var(--text-color);
}
.resources input.form-control {
    font-weight: 400;
    line-height: 22px;
    padding-right: 40px;
}
.resources .form-control::placeholder {
    opacity: 0.5;
}
.resources .search-wrapper {
    position: relative;
}
.resources .search-wrapper .search-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    position: absolute;
    right: 10px;
    top:0;
    bottom: 0;
    margin: auto;
}
.resources .arrow-down {
    position: absolute;
    right: 15px;
    top:0;
    bottom: 0;
    margin: auto;
    pointer-events: none;
}
.resources .results-section .card {
    background: #FFFFFF;
    box-shadow: 0 4px 25px rgba(87, 52, 0, 0.07);
    border-radius: 16px;
    border: 0;
}
.resources .results-section .card .card-subtitle {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    color: #8A8A8A;
}
.resources .results-section .card .card-title {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    color: var(--text-color);
}
.resources .results-section .card .card-text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--text-color);
}
.resources .results-section .card .card-text.truncate-text {
    height: 113px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.resources .results-section .card .card-footer .download_text {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #110900;
    margin-bottom: 0;
}
.resources .results-section .card .card-footer {
    background: none;
    border: none;
    display: flex;
    padding-bottom: 1.25rem;
}
#downloads.resources .results-section .card .card-footer {
    align-items: center;
}
.resources .results-section .card .card-footer .main_btn {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.75rem;
}
.resources .results-section .card .card-footer .download-btn {
    background: var(--color);
}
.resources .results-section .card .card-footer .view_btn {
    background: rgba(249, 151, 7, 0.1);
}
.resources .results-section .card .card-footer .video_btn {
    background: var(--text-color);
}
.resources .results-section .card .card-footer .download-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.resources .results-section .card .card-footer .store-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.modal-dialog.modal-fullscreen {
    max-width: 100%;
    margin: 0;
    height: 100vh;
    overflow: hidden;
}
.modal-dialog.modal-fullscreen .modal-content {
    height: 100%;
    background: var(--text-color);
    overflow-y: auto;
}
.modal-dialog.modal-fullscreen .modal-title {
    color: #FFFFFF;
    width: 100%;
    text-align: center;
    margin-left: 1.5rem;
}
.modal-dialog.modal-fullscreen .close,
.modal-dialog.modal-fullscreen .close:hover {
    opacity: 1;
}
.modal-dialog.modal-fullscreen .close-modal {
    filter: brightness(0) invert(1);
}
.modal-dialog.modal-fullscreen .modal-content,
.modal-dialog.modal-fullscreen .modal-header,
.modal-dialog.modal-fullscreen .modal-footer {
    border: none;
    border-radius: 0;
}
.tooltip-container {
    position: relative;
    display: block;
    opacity: 1;
    cursor: pointer;
    pointer-events: all;
}

.tooltip-container .tooltipText {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: var(--text-color);
    visibility: hidden;
    width: 120px;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
    text-align: center;
    border-radius: 8px;
    padding: 8px;
    position: absolute;
    /*bottom: 125%;*/
    top: 120%;
    left: 0;
    /*right: -10px;*/
    margin-left: -36px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

.tooltip-container .tooltipText::after {
    content: "";
    position: absolute;
    top: -30%;
    left: 50%;
    right: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent;
}

.tooltip-container:hover .tooltipText {
    visibility: visible;
    opacity: 1;
}
@media (min-width: 1199px) {
    .resources .results-section .col-xl-5 {
        flex-basis: 33.3333%;
        max-width: 33.3333%;
    }
}
@media (max-width: 969px) {
    .resources .results-section .card .card-footer .store-icon {
        width: 26px;
        height: 26px;
    }
}
@media (max-width: 749px) {
    .resources .filter-btn {
        height: 50px;
        width: 100%;
        background: #FFFFFF;
        box-shadow: 0 4px 25px rgba(87, 52, 0, 0.07);
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.5s;
    }
    .resources .filter-btn[aria-expanded="true"] {
        background: var(--color);
    }
    .resources .filter-btn .subheading{
        font-weight: 700;
        font-size: 18px;
        line-height: 22px;
        color: var(--color);
        padding-left: 0.5rem;
    }
    .resources .filter-btn[aria-expanded="true"] .subheading {
        color: #ffffff;
    }
    .resources .select-container {
        width: 100%;
    }
    .resources .filter-btn[aria-expanded="false"] .filter-icon {
        display: block;
    }
    .resources .filter-btn[aria-expanded="true"] .filter-icon {
        display: none;
    }
    .resources .filter-btn[aria-expanded="false"] .close-filter-icon {
        display: none;
    }
    .resources .filter-btn[aria-expanded="true"] .close-filter-icon {
        display: block;
    }
}
@media (max-width: 575px) {
    .resources .results-section .card .card-footer .store-icon {
        width: 34px;
        height: 34px;
    }
}