.descriptions {
    min-height: 260px;
}


@media screen and (max-width:1280px) {
    .descriptions {
        min-height: 340px;
    }

    .header {
        min-height: 96px;
    }
}

@media screen and (max-width:1023px) {
    .descriptions {
        min-height: auto;
        margin-bottom: 30px;
    }

    .header {
        min-height: auto;
    }
}



#currency-dropdown {
    cursor: pointer;
    text-align: left;
    outline: none;
    transition: 0.4s;
    position: relative;
  }
  
#currency-dropdown:after {
    display: inline-block;  
    position: absolute;
    right: 7px;
    top: 9px;
    content: '';
    height: 8px;
    width: 8px;
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    transition: 0.2s;

}

.expand:after {
    top:12px !important;
    transform: rotate(225deg) !important;
    content: '';
}

#currency-dropdown-panel {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.expand {
    border-bottom: 2px solid #1DA1F2;
    background-color: #F2F2F2;
}
.fold {
    border-bottom: 2px solid black;
    background-color: transparent;
}

.pricing-accordion {
    cursor: pointer;
    padding: 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 30%);
    position: relative;
  }

.pricing-accordion-panel {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
  
.pricing-accordion:after {
    display: inline-block;  
    position: absolute;
    right: 20px;
    content: '';
    height: 10px;
    width: 10px;
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    transition: 0.5s;
}
  
.pricing-accordion-active:after {
    transform: rotate(225deg);
    content: '';
}

@media (max-width: 360px) {
    .pricing-accordion:after {
        right: 10px;
        content: '';
        height: 10px;
        width: 10px;
    }
    .pricing-accordion{
        padding:20px 0px;
    }
}


