.activityIcon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #2A2A2A80;
    color: white;
    border-radius: 8px;
    position: relative;
}

.activityIcon img {
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

body.rtl .mirrorInRTL {
    transform: scaleX(-1);
}

#activityBanner {
    height: calc(150px + 8vw);
    background-position: center;
    background-size: cover;
    width: 100%;
}

@media (max-width: 576px) {
    #activityBanner {
        border-radius: 0 !important;
    }
}

.book {
    border-radius: 8px;
    background: #FED36F;
    box-shadow: 0px 10px 36px 0px rgba(0, 0, 0, 0.20);
    padding: 20px 30px;
    flex-wrap: wrap;
    z-index: 100;
}

.book > h4 {
    font-size: calc(15px + 0.4vw);
    color: black;
}

.book > div {
    font-size: calc(14px + 0.2vw);
    text-align: center;
}

.slider {
    margin: 50px auto;
}

.slick-slide {
    transition: all ease-in-out .3s;
    opacity: .5;
    transform: scale(0.90);
}

.slick-active {
    opacity: .5;
    transform: scale(0.90);
}

.slick-current {
    opacity: 1;
    transform: scale(1);
}

.guide_doc_download {
    background: #72B6DE;
    border: none;
    color: white;
    padding: 0px;
    cursor: pointer;
}

.guide_doc_download:hover {
    background: #0094D7;
}

.parameters {
    display: inline-flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    gap: var(--spacing-md, 16px);
}

.parameters .param {
    color: #EF9700;
    font-size: 14px;
    border-radius: 6px;
    background: #FFF3E3;
    display: inline-flex;
    padding: 10px 20px;
    align-items: center;
    gap: var(--spacing-md, 16px);
}

.parameters .param img {
}

.activityDetails {
    font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
    font-family: bootstrap-icons !important;
    content: "\f285";
    font-weight: 800;
    color: black;
}

.breadcrumb {
    font-size: 14px;
    margin: 0px;
}

.navbar {
    box-shadow: none !important;
}

.breadcrumb_container {
    position: sticky;
    z-index: 1021;
    top: 80px;
    background-color: white;
    border-top: 1px solid #D0D5DE;
    box-shadow: 0px 24px 36px 0px rgba(0, 0, 0, 0.05);
}

.breadcrumb a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

body.rtl .breadcrumb-item + .breadcrumb-item::before {
    transform: scaleX(-1);
    padding-left: 0;
    padding-right: 8px;
}

h1, h3 {
    color: black;
}