.ahan-settings {
    margin: 10px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.ahan-settings__box {
    margin: 10px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.ahan-settings__box label {
    display: inline-block;
    min-width: 100px;
}

.ahan-settings__section {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 15px;
    background-color: #fff;
}

.ahan-settings__section__title {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: block;
}

.ahan-settings__section__title span {
    font-size: 25px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 20px;
}

.ahan-page {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.ahan-page__sidebar {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.ahan-page__content {
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 10px;
    margin-top: 2em;
}

.ahan-page__sidebar__item {
    border: 1px dashed #ccc;
    padding: 10px 20px;
    cursor: pointer;
    color: #000;
    width: calc(33.33% - 20px);
    text-align: center;
    margin: 10px;
}

.ahan-page__sidebar__item--active {
    background-color: #EEAD16;
}

.ahan-page__content__item {
    display: none;
    width: 100%;
}

.ahan-page__content__item--active {
    display: flex;
    flex-wrap: wrap;
}

.ahan-page__content__title {
    width: 100%;
    margin-bottom: 20px;
}

.ahan-page__content__title h3 {
    font-size: 24px;
    font-weight: 700;
}

.ahan-page__content__box {
    width: calc(50% - 20px);
    margin: 0 10px;
}

.ahan-page__content__box__field {
    display: flex;
    flex-direction: column;
}

.ahan-page__content__box__field select,
.ahan-page__content__box__field input {
    border-radius: 10px;
    background: #fff;
    border: 2px solid #ececec;
    padding: 10px;
}

.ahan-page__content__info {
    width: 100%;
    margin-top: 20px;
    text-align: center;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #ececec;
    padding-top: 10px;
}

.ahan-page__content__info__result__box {
    display: flex;
    flex-direction: column;
}

.ahan-page__content__info__result {
    width: 50%;
    padding: 10px;
    border-top: 1px solid #ececec;
    border-radius: 10px;
    font-size: 28px;
    text-align: center;
    display: block;
    margin: 20px auto;
}

.ahan-price {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.ahan-price__box {
    border: 1px solid #ccc;
    border-radius: 15px;
    background-color: #fff;
}

.ahan-price__box__title {
    padding: 13px 10px;
    border-bottom: 1px solid #ccc;
    font-weight: 800;
    background-color: #051934;
    color: #fff;
    border-radius: 10px 10px 0 0;
    margin-bottom: 20px;
}

.ahan-price__box__prodct:last-child {
    margin-bottom: 20px;
}

.ahan-price__box__prodct {
    margin: 10px 0;
    font-size: 15px;
    border-bottom: 1px solid #dcdcdc;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ahan-price__box__prodct:last-child {
    border-bottom: none;
}

.ahan-history {
    margin-top: 20px;
    padding-left: 30px;
}

.ahan-history__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ahan-histoty__filter {
    display: flex;
}

.ahan-history__filter__item {
    margin-right: 20px;
    display: block;
}

.ahan_price__chart {
    display: flex;
    margin-right: 3px;
}

.ahan_price__chart svg {
    width: 15px;
    height: 15px;
}

.ahan-price__box__prodct div {
    display: flex;
    align-items: center;
}

.ahan-price__chart {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    background-color: #00000040;
}

.ahan-price__chart__box {
    width: 50%;
    margin: 7em auto 0 auto;
}

.ahan-price__date {
    font-size: 19px;
    line-height: 40px;
    margin-bottom: 10px;
    text-align: center;
}


/*Responsie*/
@media (max-width: 1024px) {
    .ahan-price {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .ahan-price {
        grid-template-columns: 1fr;
    }

    .ahan-page__sidebar__item {
        width: calc(50% - 20px);
    }
}