﻿.infoTower {
    display: flex;
    flex-direction: column;
    background-image: url("../../images/HoroscopSection/horoscopIntro.webp");
    background-size: cover;
    background-position: center;
    max-width: 944px;
    width: 100%;
    gap: 8px;
    padding-top: 0px;
    padding-bottom: 8px;
}

.infoTower .header {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 32px;
        height: 110px;
        background: rgba(255, 255, 255, 0.10);
        padding-right: 20px;
        padding-left: 20px;

}
.infoTower .header img{width:50px;height:auto}
.dropdownTower {
    position: relative;
    display: inline-block;
}

.dropbtnTower {
    outline: none;
    border: none;
    background: none;
    color: #fff;
    font-size: 30px;
    font-family: 'DroidKufiBold';
    line-height: 1.6;
    padding-left: 36px;
    direction: rtl;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap:36px;
    align-items:center;
    flex-direction: row-reverse;
}

/* Arrow icon */
.dropbtnTower.icon-tower:before {
    content: "q";
    font-size: 14px;
    rotate: 270deg;
    padding-right: 5px;
}

.dropdownTowerContent {
    display: none;
    position: absolute;
    background: #ffffff;
    color: #065d70;
    font-size: 14px;
    font-family: 'DroidKufiLight';
    width: 100%;
    margin-top: 15px;
    padding: 0;
    max-height: 135px;
    overflow-y: auto;
    left: 0;
}

.dropdownTowerContent p {
    padding: 4px 8px;
    margin: 0;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}



.dropdownTower.show .dropdownTowerContent {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}


.infoTable {
    display: flex;
    flex-direction: column;
    padding-right: 20px;
    padding-left: 20px;
}

.infoItem {
    display: flex;
    flex-wrap: wrap;
}

.infoItem div {
    width: 25%;
    border-left: 1px solid #ffffff33;
    padding: 0px 12px;
}

.infoItemOne {
    padding-bottom: 8px;
}

.infoItemTwo {
    padding-top: 8px;
}

.infoItemOne div:last-child,
.infoItemTwo div:last-child {
        border: 0;
}

.hrMobile,
.mobileSpace {
    display: none;
    height: 0;
}

hr {
    border: none;
    border-bottom: 1px solid #ffffff33;
}

.infoTitle {
    font-size: 13px;
    font-family: 'DroidKufiLight';
    color: #ffffffcc;
    line-height: 1.6;
    padding: 6px 0px;
}

.infoValue {
    color: #fff;
    font-size: 14px;
    font-family: 'DroidKufiBold';
    line-height: 1.8;
}



@media screen and (max-width : 1279px) {
    .infoTower .header {
        height: 80px;
    }

   .dropbtnTower {
        font-size: 24px;
    }

    .infoItem div {
        width: 50%;
    }

    .infoItemOne div:nth-of-type(2),
    .infoItemTwo div:nth-of-type(2) {
        border: 0;
    }

    .hrMobile,
    .mobileSpace {
        display: block;
    }

    .mobileSpace {
        padding: 4px 0px;
        width: 100%;
    }

    .dropdownTowerContent {
        max-height: 210px;
    }
}



@media screen and (min-width: 320px) and (max-width: 767px) {
    .infoTower {
        padding-bottom: 8px;
        background-image: url('../../Images/HoroscopSection/KnowYourSign.webp');
    }

    .infoTower .header {
    padding-left:10px;
    padding-right:10px;
    gap:12px;

    }

    .dropbtnTower{
    gap:24px;
    }

    .infoTable {
        padding-left: 10px;
        padding-right: 10px;
    }

    .infoTitle {
        font-size: 12px;
    }

    .infoValue {
        font-size: 11px;
    }
}

