/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

/* Bootstrap Tabs - Start */
.bootstrap-tabs-wrapper nav > .nav.nav-tabs{

    border: none;
    color:#fff;
    background:#272e38;
    border-radius:0;

}
.bootstrap-tabs-wrapper nav > div a.nav-item.nav-link,
.bootstrap-tabs-wrapper nav > div a.nav-item.nav-link.active
{
    border: none;
    padding: 18px 25px;
    color: #fff;
    background: #272e38;
    border-radius:0;
}

.bootstrap-tabs-wrapper nav > div a.nav-item.nav-link.active {
    font-weight: 600;
    background: var(--main-color-one);
}

.bootstrap-tabs-wrapper nav > div a.nav-item.nav-link.active:after
{
    content: "";
    position: relative;
    bottom: -55px;
    left: -10%;
    border: 15px solid transparent;
    border-top-color: var(--main-color-one);
}

.bootstrap-tabs-wrapper .tab-content {
    background: #fdfdfd;
    line-height: 25px;
    border: 1px solid #ddd;
    border-top: 5px solid var(--main-color-one);
    border-bottom: 5px solid var(--main-color-one);
    padding: 30px 25px;
}

.bootstrap-tabs-wrapper nav > div a.nav-item.nav-link:hover,
.bootstrap-tabs-wrapper nav > div a.nav-item.nav-link:focus {
    border: none;
    background: var(--main-color-one);
    color: #fff;
    border-radius: 0;
    transition: background 0.20s linear;
}
/* Bootstrap Tabs - End */

/* Step Form - Start */
/*Step form styles*/
.step-form {
    text-align: center;
    position: relative;
    margin-top: 30px;
}

.step-form fieldset {
    background: white;
    border: 0 none;
    border-radius: 0;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    box-sizing: border-box;
    width: 90%;
    margin: 0 auto;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
.step-form fieldset:not(:first-of-type) {
    display: none;
}

.step-form label {
    font-size: 16px;
    font-weight: 500;
    color: black;
}

/*inputs*/
.step-form input, .step-form textarea {
    /*padding: 24px 18px;*/
    border: 1px solid #ccc;
    border-radius: 0;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat, serif;
    color: #2C3E50;
    font-size: 15px;
    max-height: unset;
}

.step-form input:focus, .step-form textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #0d8100;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}

/*buttons*/
.step-form .action-button {
    width: 100px;
    background: #0d8100;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

.step-form .action-button:disabled {
    cursor: not-allowed;
}

.step-form .action-button:hover, .step-form .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #0d8100;
}

.step-form .action-button-previous {
    width: 100px;
    background: #755900;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

.step-form .action-button-previous:hover, .step-form .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #755900;
}

/*headings*/
.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-top: 10px;
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-weight: bold;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*step-form-progressbar*/
.step-form #step-form-progressbar {
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
    width: 90%;
    margin: 30px auto;
}

.step-form #step-form-progressbar li {
    list-style-type: none;
    color: #000;
    text-transform: uppercase;
    font-size: 15px;
    width: calc(100% / var(--columns, 6)) !important;
    float: left;
    position: relative;
    letter-spacing: 1px;
}

.step-form #step-form-progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 30px;
    height: 30px;
    line-height: 26px;
    display: block;
    font-size: 16px;
    color: #333;
    background: white;
    border-radius: 25px;
    margin: 0 auto 10px auto;
}

/*step-form-progressbar connectors*/
.step-form #step-form-progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}

.step-form #step-form-progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
.step-form #step-form-progressbar li.active:before, .step-form #step-form-progressbar li.active:after {
    background: #0d8100;
    color: white;
}
/* Step Form - End */

/* Checkbox Switch - Start */
.checkbox-switch label {
    cursor: pointer;
}

.checkbox-switch .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.checkbox-switch .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.checkbox-switch .slider:before {
    position: absolute;
    content: "" !important;
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.checkbox-switch input:checked + .slider {
    background-color: #2196F3;
}

.checkbox-switch input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

.checkbox-switch input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.checkbox-switch .slider.round {
    border-radius: 34px;
}

.checkbox-switch .slider.round:before {
    border-radius: 50%;
}
/* Checkbox Switch - End */

.user-dashboard-wrapper .tab-content {
    width: calc(100% - 360px) !important;
    margin: auto;
}

@media only screen and (max-width: 575px){
    .user-dashboard-wrapper .tab-content {
        width: 100% !important;
    }
}



div.header-style-01.header-variant-03.inner-page nav.navbar.nav-style-02 ul.navbar-nav > li > a,
div.header-style-01.header-variant-03.inner-page nav.navbar.nav-style-02 ul.navbar-nav > li::before {
    color: #fff !important;
}

div.header-style-01.header-variant-03.inner-page nav.navbar.nav-style-02 ul.navbar-nav > li div.xg_mega_menu_wrapper {
    top: 237px;
}

.hide {
    display: none;
}

select.form-control {
    height: 50px;
}

/* Donation form - Start */
:root {
    --main-color-one: #fcb11a;
    --main-color-two: #1a191f;
}

.donation_wrapper {
    padding: 30px;
    background: transparent;
    box-shadow: 0 0 50px 0 rgb(0 0 0 / 5%);
}

.donation_wrapper .header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.donation_wrapper .header-content .icon {
    font-size: 22px;
    line-height: 32px;
    color: #fff;
    margin-right: 10px;
}

.donation_wrapper .title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.donation_wrapper .single_amount_wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.donation_wrapper .single_amount_wrapper .single_amount {
    padding: 5px 10px;
    border-radius: 5px;
    color: var(--heading-color);
    background: transparent;
    margin: 0 5px 20px;
    cursor: pointer;
    border: 1px solid;
}

.donation_wrapper .single_amount_wrapper .single_amount:hover {
    color: #fff;
    background: var(--main-color-two);
}

.donation_wrapper .amount_wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.donation_wrapper .amount_wrapper .suffix {
    border-radius: 5px 0 0 5px;
    width: 100px;
    border: 2px solid #e2e2e2;
    border-right: none;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    padding: 8px;
    background-color: #fff;
}

.donation_wrapper .amount_wrapper input {
    border-radius: 0 8px 8px 0;
    border-right: 0;
    outline: none;
    padding: 8px;
    background-color: #fff;
    width: 100%;
}

.donation_wrapper a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    padding: 15px 25px;
    border: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0) inset, 0 0 0 0 rgba(0, 0, 0, 0) inset;
    background: var(--main-color-one);
    transition: all 0.3s;
}

.donation_wrapper a:hover {
    background: var(--main-color-two);
}

.donation_wrapper a:active {
    box-shadow: 0 -2px 2px 0 rgba(255, 255, 255, 0.2) inset, 0 2px 2px 0 rgba(0, 0, 0, 0.5) inset;
}

.donation-amount-details-wrapper {
    padding: 30px;
    box-shadow: 0 0 50px 0 rgba(0,0,0,0.05);
}

.donation-amount-details-wrapper > .title {
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 30px;
}

.donation-amount-details-wrapper .your-area-donation-wrap {
    display: flex;
    margin-bottom: 30px;
}

.donation-amount-details-wrapper .your-area-donation-wrap .thumb {
    margin-right: 20px;
}

.donation-amount-details-wrapper .your-area-donation-wrap .content .title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.donation-amount-details-wrapper .your-area-donation-wrap .content .created_by {
    font-size: 12px;
    text-transform: capitalize;
    line-height: 16px;
    color: var(--heading-color);
    opacity: .6;
}

.donation-amount-details-wrapper ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.donation-amount-details-wrapper ul li {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: var(--heading-color);
}

.donation-amount-details-wrapper ul li+li {
    margin-top: 10px;
}

.donation-amount-details-wrapper ul li.title {
    border-top: 2px solid #7b3434;
}

.donation-amount-details-wrapper ul li.total {
    border-top: 1px solid #e2e2e2;
    padding: 20px 0 0;
    margin-top: 30px;
}

.donation-amount-details-wrapper ul li.total span{
    font-weight: 600;
}

.donation-amount-details-wrapper span.price {
    word-break: break-all;
}

.donation_wrapper .goback-btn {
    display: inline-block;
    width: auto;
    background-color: transparent;
    border: 1px solid;
    color: var(--heading-color);
    padding: 10px 20px;
    margin: 0 0 20px;
}

.donation_wrapper .goback-btn:hover {
    color: #fff;
}

.donation_wrapper .amount_wrapper input[name="amount"] {
    height: 50px;
    border: 2px solid #e2e2e2;
    color: var(--heading-color) !important;
    font-size: 40px;
    font-weight: 700;
    -webkit-appearance: none;
    line-height: 50px;
    appearance: none;
    text-align: right;
    background: transparent !important;
}

.donation_wrapper .amount_wrapper input[name="amount"]::-webkit-outer-spin-button,
.donation_wrapper .amount_wrapper input[name="amount"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.donation-form-wrapper input {
    height: 50px;
    border: 1px solid #e2e2e2;
}

.donation-form-wrapper input[type="checkbox"] {
    height: auto;
}

.donation-form-wrapper .label {
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.donation-wrap.donation-success-page {
    margin: 40px 0;
}

.widget-area .donation_wrapper .btn-wrapper .boxed-btn.reverse-color {
    padding: 7px 13px;
    border: none;
}

.payment-gateway-wrapper ul {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.payment-gateway-wrapper ul li {
    width: 100px;
    cursor: pointer;
    box-sizing: border-box;
    height: 50px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 10px;
}

.payment-gateway-wrapper ul li + li {
    margin-left: 15px;
}

.payment-gateway-wrapper ul li.selected:after,
.payment-gateway-wrapper ul li.selected:before {
    visibility: visible;
    opacity: 1;
}

.payment-gateway-wrapper ul li:before {
    border: 2px solid var(--main-color-one);
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    visibility: hidden;
    opacity: 0;
    transition: all 300ms;
}

.payment-gateway-wrapper ul li:after {
    position: absolute;
    right: 0;
    top: 0;
    width: 15px;
    height: 15px;
    background-color: var(--main-color-one);
    content: "\f00c";
    font-weight: 900;
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    line-height: 10px;
    text-align: center;
    padding-top: 2px;
    padding-left: 2px;
    visibility: hidden;
    opacity: 0;
    transition: all 300ms;
}

#withdraw_able_amount_wrap p {
    margin-bottom: 0;
}

.amount-details .raised {
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
}

.amount-details .raised .goal {
    font-size: 14px;
    font-weight: 600;
    opacity: .8;
}
.amount-details .raised .goal strong {
    font-size: 16px;
    font-weight: 700;
    opacity: 1;
}
/* Donation form - End */

.zc-flex-3-items-per-row {
    display: flex;
    flex-wrap: wrap;
}
.zc-flex-3-items-per-row .zc-flex-item {
    flex: 1 0 31%;
    margin: 5px;
}
.zc-flex-4-items-per-row {
    display: flex;
    flex-wrap: wrap;
}
.zc-flex-4-items-per-row .zc-flex-item {
    flex: 1 0 21%;
    margin: 5px;
}


.iconbox-repeater-wrapper .all-field-wrap .form-group input {
    background: #fff;
    height: 2.5rem;
    padding: 5px 10px;
}