/*tools start*/

.tools_section{
    padding: 28px 20px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
@media screen and (min-width:768px){
    .tools_section{
        padding: 64px;
    }
}

.tools_wrapper{
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
@media screen and (min-width:768px){
    .tools_wrapper{
        padding: 24px;
        gap: 24px;
    }
}

.tools_wrapper h2{ 
    text-align: center;
}


.select_wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}


.select_wrapper label {
    font-size: 16px;
    font-weight: 600;
}



.select_wrapper select option {
  font-size: 16px;
}

.select_group {
    display: flex;
    flex-direction: column;
    gap: 12px 24px;
    width: 100%;
}
@media screen and (min-width:768px){
    .select_group {
        flex-direction: row;
    }
}

.btn_group{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn_group button {
    min-width: max-content;
    transition: all 0.3s ease;
}

.select2-container {
    width: 100% !important;
}
.select2-container--default .select2-selection--single {
    height: auto;
    display: flex;
    align-items: center;
    padding: 8px 30px 8px 8px;
    font-size: 16px;
    font-weight: 500;
    background-color: var(--light-bgcolor);
    border: 2px solid var(--btn-bgcolor);
    border-radius: 12px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    background-image: url("data:image/svg+xml;utf8,<svg fill='%2309404A' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 24px;
    width: 28px;
    height: 28px;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}
.result_box {
    padding: 18px;
    border-radius: 10px;
    background: var(--light-bgcolor);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
