/* .cancel-subscription .reason-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: #38495d;
    width: 120px;
    height: 130px;
    border-radius: 4px;

    color: white;
    gap: 8px;
}

.reason-box i {
    font-size: 32px;
    line-height: 1;
    color: #398de8;
}

.reason-box span {
    text-align: center;
    font-size: 14px;
}

.reason-box .dollar-icon{
    border: 2px solid #398de8;
    border-radius: 100%;
    font-size: 25px;
}

.two-gears {
    position: relative;
    width: 36px;
    height: 36px;
}

.two-gears i {
    position: absolute;
    font-size: 32px;
    color: #398DE8;
}

.two-gears i:nth-child(1) {
    left: 0;
    top: 20px;
    font-size: 20px;
}

.two-gears i:nth-child(2) {
    left: 10px;
    top: -4px;
    transform: rotate(20deg);
}
 */

 .reasons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.cancel-subscription .reason-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #38495d;
    width: 120px;
    height: 130px;
    border-radius: 6px;
    color: white;
    gap: 8px;
    cursor: pointer;
}

.reason-box span {
    text-align: center;
    font-size: 14px;
}

/* ICONS */
.reason-box i {
    font-size: 32px;
    line-height: 1;
    color: #398de8;
}

.reason-box .dollar-icon{
    border: 2px solid #398de8;
    border-radius: 100%;
    font-size: 25px;
}

/* Double gears */
.two-gears {
    position: relative;
    width: 36px;
    height: 36px;
}

.two-gears i {
    position: absolute;
    font-size: 28px;
    color: #398DE8;
}

.two-gears i:nth-child(1) {
    left: 0;
    top: 20px;
    font-size: 20px;
}

.two-gears i:nth-child(2) {
    left: 12px;
    top: -2px;
    transform: rotate(20deg);
}

.reason-content{
    background-color: #F1F5F7;
}

/* Mobile Screen reason container */

@media (max-width: 767px) {
    .reasons-container{
        justify-content: center;
    }
    .cancel-subscription .reason-box {
        width: 100%;
        max-width: 300px;
        height: 110px;
    }
}

/* Tab Screen */
@media (min-width: 768px) and (max-width: 1024px) {
    .reasons-container{
        justify-content: center;
    }
    .cancel-subscription .reason-box {
        width: calc(33.333% - 20px); 
        max-width: 200px;
        height: 120px;
    }
}
