/* دگمه حدف همه  */
.deletAll-btn {
    all: unset;
    color: #AF3A3A;
    font-weight: bold;
    padding: 1px 20px;
    border-radius: 40px;
    transition: all .15s;
}

.deletAll-btn:hover {
    background-color: #ffbfbf;
}

/*  */
/* دگمه شهر های انتخاب شده  */
.selected-city-btn {
    all: unset;
    background-color: rgb(237, 217, 217);
    color: #AF3A3A;
    border: 2px solid #AF3A3A;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 40px;
    margin-top: 10px;
    margin-right: 20px;
}

/*  */
/* اینپوت جستجو  */
.search-city-input {
    width: 90%;
    outline: none;
    margin: 30px 0;
    padding: 12px;
    border: 1px solid grey;
    border-radius: 5px;
}

.search-city-input:focus {
    border: 2px solid #AF3A3A;
}

/*  */
/* li لیست شهر ها */
.list-unstyled li {
    display: flex;
    justify-content: space-between;
    flex-flow: row-reverse;
    align-items: center;
    font-size: 18px;
    margin: 5px 20px;
    padding: 10px 0;
    border-bottom: 1px solid rgb(201, 199, 199);
}

/*  */
/* تغغیر استایل checkbox ها  */
input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: red;
    transition: all 0.3s;
}

input[type="checkbox"]:checked {
    transform: scale(1.2);
}

/*  */