/* Toggle Shortcode */
.toggle {
    margin-bottom: 15px;
    border: 1px solid #eee;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.toggle h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F0F0F1;
    font-size: 14px;
    padding: 10px;
    margin: 0;
    cursor: pointer;
    -webkit-transition: background .2s ease;
    -moz-transition: background .2s ease;
    -o-transition: background .2s ease;
    transition: background .2s ease;
}

.toggle h3:hover {
    background: #E7E7E7;
}

h3.toggle-head-close {
    display: none;
}

h3.toggle-head-open i,
h3.toggle-head-close i {
    display: inline-flex;
    font-size: 32px;
    margin-right: 5px;
    position: relative;
    height: 32px;
    line-height: 23px;
    font-weight: 600;
}

.toggle-content {
    padding: 20px;
}

.toggle.close .toggle-content,
.toggle.close h3.toggle-head-open {
    display: none;
}

.toggle.close h3.toggle-head-close {
    display: flex;
}

/*
Forms
 */

.mahan-lead-form-wrapper * {
    box-sizing: border-box;

}

.mahan-form-title {
    font-size: 1.25rem;
    text-align: center;
    margin: 0 0 32px 0;
    color: #e61c29 !important;
}

.mahan-form-divider {
    height: 2px;
    background: #e61c29;
    max-width: 100px;
    margin: 16px auto;
}

.mahan-lead-form {
    display: flex;
    flex-wrap: wrap;
}

.mahan-form-row {
    margin-bottom: 16px;
    width: 100%;
    padding: 0 8px;
}

.mahan-form-row label {
    display: block;
    color: #ffffff !important;
    margin-bottom: 8px;
    font-weight: 500;
}

.mahan-form-row input, .mahan-form-row select {
    background: #ffffff;
    width: 100%;
    height: 44px;
    padding: 0 16px;
    font-family: inherit;
    border: 1px solid black;
    border-radius: 6px;
    line-height: 42px;
    display: block;
    direction: rtl;
}

.mahan-lead-form-wrapper .required {
    color: red;
}

.mahan-lead-form {
    font-family: YEKAN, serif;
    background: #202020;
    color: #fff;
    padding: 15px;
    border-radius: 12px;
}

.mahan-lead-form-wrapper button {
    display: block;
    width: 100%;
    height: 38px;
    margin: 8px;
    background: #e61c29 !important;
    border: 1px solid #e61c29;
    border-radius: 6px;
    font-weight: 500;
    color: #ffffff !important;
    cursor: pointer;
    transition: all .15s ease-in-out;
}

.whatsapp-chat-button {
    display: block;
    width: 50px;
    height: 50px;
    background: #0AA312;
    text-align: center;
    padding: 9px 0;
    box-sizing: border-box;
    border-radius: 12px;
    color: #fff;
    position: fixed;
    bottom: 15px;
    right: 15px;
}

@media (max-width: 570px) {
    .whatsapp-chat-button {
        bottom: 58px;
    }
}

@media (min-width: 640px) {
    .mahan-half-row {
        max-width: 50%;
    }
}


