.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

h3 {
    box-sizing: border-box;
    color: rgb(98, 149, 44);
    display: block;
    font-family: Raleway, sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.tr_header_price {
    /* border-top: 2px solid #000;
    border-bottom: 2px solid #000; */
}

.tr_header_price th {
    position: relative;
    font-weight: 500;
    color: #62952c;
    padding: 20px 0px;
    vertical-align: top;
    text-align: center;
    /* border-color: #f0f0f0; */
    border: 0 !important;
    vertical-align: middle !important;
}

.price_table {
    padding: 18px 8px;
    vertical-align: center;
    /* border: 1px solid #EAEAEA; */
    text-align: center;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 2px;
}

.price_table tr {
    background-color: transparent !important;
    transition: box-shadow 0.3s;
}

.price_table tr:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.price_table td {
    /* border-color: #f0f0f0 !important; */
    vertical-align: middle !important;
}

.price_table td:first-child {
    position: relative;
}

.price_table td:first-child:before {
    content: '';
    width: 2px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.3s;
}

.price_table tr:hover td:first-child:before {
    background-color: #72af32;
}

@media screen and (max-width: 600px) {
    .price_table {
        font-size: 14px;
    }
}

/*Сортировка*/
.triangles span {
    display: inline-block;
    vertical-align: top;
    border: 6px solid transparent;
    border-bottom: 6px solid #cccccc;
    width: 0;
    height: 0;
    margin-left: -1px;
    margin-right: -1px;
    cursor: pointer;
}

.triangles span:nth-of-type(2) {
    border: 6px solid transparent;
    border-top: 6px solid #cccccc;
    margin-top: 6px;
}

.triangles span.active {
    border-bottom: 6px solid #62952c;
}

.triangles span.active:nth-of-type(2) {
    border-top: 6px solid #62952c;
    border-bottom: transparent;
}

.form_error {
    color: #dc3545;
}

.icon-edit {
    display: inline-block;
    background: url(../img/edit-icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
}

.icon-remove {
    display: inline-block;
    background: url(../img/remove-icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 14px;
    height: 14px;
}

.form-control:focus {
    border-color: transparent !important;
    box-shadow: 0 0 0 0.2rem rgba(98, 149, 44, 0.25) !important;
}

.q-header__menu ul {
    margin-bottom: 0;
}

.q-callback-form__input-container-title {
    margin-bottom: 0;
}