.tab-wrapper {
    text-align: center;
    display: block;
    margin:auto;
}

.tabs {
    margin:0;
    padding:0;
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 10%;
}

.tabs:before
{
    content: '';
    width: 90%;
    height: 15px;
    background: #f5f5f5;
    position: absolute;
    margin-top: 35px;
    z-index: -1;
    border-radius:2%;
}

.tab-link {
    margin:0 2px;
    list-style: none;
    padding:10px 15px;
    background: #ffffff;
    color: #f26522;
    cursor: pointer;
    font-size: 15px;
    transition: all ease 0.5s;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*text-transform: uppercase;*/
    border-radius:50%;
    box-shadow: 0px 0px 24px -7px rgba(0,0,0,0.75);
    border: 1px;
}

.tab-link span:nth-of-type(1){
    /*font-family: sans-serif;*/
    font-size: 25px;
    font-weight: bold;
    color: #988A7D;
    margin-right: 2px;
}

.tab-link div{
    display: inline-grid;
}

.tab-link:hover {
    color: #ffffff!important;
    border-color: #ffffff!important;
    background: #f26522!important;
}

.tab-link.active {
    color: #333;
    border-color: #333;
}

.tab-link:nth-of-type(1).active {
    color: #ffffff;
    background: #f26522;
    box-shadow: 0px 0px 24px -7px rgba(0,0,0,0.75);
    border: 1px solid #FFFFFF !important;
}

.tab-link:nth-of-type(2).active {
    color: #ffffff;
    background: #f26522;
    box-shadow: 0px 0px 24px -7px rgba(0,0,0,0.75);
    border: 1px solid #FFFFFF !important;
}

.tab-link:nth-of-type(3).active {
    color: #ffffff;
    border: 1px solid #FFFFFF !important;
    background: #f26522;
    box-shadow: 0px 0px 24px -7px rgba(0,0,0,0.75);
}

.tab-link:nth-of-type(4).active {
    color: #ffffff;
    border: 1px solid #FFFFFF !important;
    background: #f26522;
    box-shadow: 0px 0px 24px -7px rgba(0,0,0,0.75);
}

.tab-link:nth-of-type(5).active {
    color: #ffffff;
    border: 1px solid #FFFFFF !important;
    background: #f26522;
    box-shadow: 0px 0px 24px -7px rgba(0,0,0,0.75);
}

.tab-link:nth-of-type(6).active {
    color: #ffffff;
    border: 1px solid #FFFFFF !important;
    background: #f26522;
    box-shadow: 0px 0px 24px -7px rgba(0,0,0,0.75);
}

.tab-link:nth-of-type(7).active {
    color: #ffffff;
    border: 1px solid #FFFFFF !important;
    background: #f26522;
    box-shadow: 0px 0px 24px -7px rgba(0,0,0,0.75);
}

.content-wrapper {
    margin:20px 3px;
}

.tab-content {
    display: none;
    color: #000;
    font-size: 16px;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeIn 0.5s ease 1 forwards;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    100% {
        opacity: 1;
        transform: none;
    }
}

.input-group-button
{
    display: table-cell;
    vertical-align: middle;
}

.input-group-button .btn
{
    padding:12px 17px;
}

.tab-content label
{
    font-weight: 400;
}

.tab-content textarea
{
    margin-bottom: 15px;
}



/*payment-radio*/

.plans {
    display: flex;
    justify-content: start;
    width: 100%;
    margin-left: 0!important;
}

.plans .plan input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.plans .plan {
    cursor: pointer;
    width: auto;
    /* margin-left: 20px; */
    width: 50%;
}

.plans .plan img{
    /*width: 100%;*/
}

.plans .plan .plan-content {
    /*display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding:30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;*/
    /*border: 2px solid #e1e2e7;*/
    /*border-radius:10px;
    -webkit-transition: -webkit-box-shadow 0.4s;
    transition: -webkit-box-shadow 0.4s;
    -o-transition: box-shadow 0.4s;
    transition: box-shadow 0.4s;
    transition: box-shadow 0.4s, -webkit-box-shadow 0.4s;
    position: relative;*/
}

.plans .plan .plan-content img {
    /*height: 72px;
      width: auto;
      max-width: initial;*/
}

.plans .plan {
    /*margin-left: 30px;*/
}

.plans .plan .plan-details span {
    margin-bottom: 10px;
    display: block;
    font-size: 20px;
    line-height: 24px;
    color: #252f42;
}

.container .title {
    font-size: 20px;
    font-weight: 500;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    color: #252f42;
    margin-bottom: 20px;
}

.plans .plan .plan-details p {
    color: #646a79;
    font-size: 14px;
    line-height: 18px;
}

.plans .plan .plan-content:hover {
    -webkit-box-shadow: 0px 3px 5px 0px #e8e8e8;
    box-shadow: 0px 3px 5px 0px #e8e8e8;
}

.plans .plan input[type="radio"]:checked + .plan-content:after {
    content: "";
    position: absolute;
    height: 8px;
    width: 8px;
    background: #216fe0;
    left: 20px;
    top: 20px;
    border-radius:100%;
    border: 3px solid #fff;
    -webkit-box-shadow: 0px 0px 0px 2px #0066ff;
    box-shadow: 0px 0px 0px 2px #0066ff;
    pointer-events: none;
    visibility:hidden;
}

.plans .plan input[type="radio"]:checked + .plan-content {
    border: 2px solid #216ee0;
    background: #eaf1fe;
    -webkit-transition: ease-in 0.3s;
    -o-transition: ease-in 0.3s;
    transition: ease-in 0.3s;
}

@media screen and (max-width: 991px) {
    .plans {
        margin:0 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding:40px;
    }

    .plans .plan {
        width: 100%;
    }

    .plan.complete-plan {
        margin-top: 20px;
    }

    .plans .plan .plan-content .plan-details {
        width: 70%;
        display: inline-block;
    }

    .plans .plan input[type="radio"]:checked + .plan-content:after {
        top: 45%;
        -webkit-transform: translate(+50%);
        -ms-transform: translate(+50%);
        transform: translate(+50%);
    }
}

@media screen and (max-width: 767px) {
    .plans .plan .plan-content .plan-details {
        width: 60%;
        display: inline-block;
    }
}

@media screen and (max-width: 540px) {
    .plans .plan .plan-content img {
        margin-bottom: 20px;
        height: 56px;
        -webkit-transition: height 0.4s;
        -o-transition: height 0.4s;
        transition: height 0.4s;
    }

    .plans .plan input[type="radio"]:checked + .plan-content:after {
        top: 20px;
        left: 10px;
    }

    .plans .plan .plan-content .plan-details {
        width: 100%;
    }

    .plans .plan .plan-content {
        /*padding:20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;*/
    }
}

/* inspiration */
.inspiration {
    font-size: 12px;
    margin-top: 50px;
    position: absolute;
    bottom: 10px;
    font-weight: 300;
}

.inspiration a {
    color: #666;
}
@media screen and (max-width: 767px) {
    /* inspiration */
    .inspiration {
        display: none;
    }
}

.custom-btn-success{
    background: #f26522;
    color: #FFFFFF;
    border-color: #f26522;
}

.custom-btn-success:focus,.custom-btn-success:hover{
    background: #f26522;
    color: #FFFFFF;
    border-color: #f26522;
}

.input-group{
    width: 100%;
    display: flex;
}

.btn{
    border-radius:0;
}

.btnFullwidth{
    width: 80%;
}
.float-right{
    float: right;
}

:root {
    --select-border: #777;
    --select-focus: blue;
    --select-arrow: var(--select-border);
}

select {
    /*-webkit-appearance: none;*/
    /*-moz-appearance: none;*/
    /*appearance: none;*/
    background-color: transparent;
    border: none;
    padding-top: 0; padding-left: 1em; padding-bottom: 0; padding-right: 0;
    margin:0;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    cursor: inherit;
    line-height: inherit;
    z-index: 1;
    outline: none;
}
select::-ms-expand {
    display: none;
}

.select {
    display: grid;
    grid-template-areas: "select";
    align-items: center;
    position: relative;
    min-width: 15ch;
    max-width: 30ch;
    border: 1px solid var(--select-border);
    border-radius:0.25em;
    padding:0.25em 0.5em;
    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1.1;
    background-color: #fff;
    background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
}
.select select, .select::after {
    grid-area: select;
}
.select:not(.select--multiple)::after {
    content: "";
    justify-self: end;
    width: 0.8em;
    height: 0.5em;
    background-color: var(--select-arrow);
    -webkit-clip-path: polygon(100% 0%, 0 0%, 50% 100%);
    clip-path: polygon(100% 0%, 0 0%, 50% 100%);
}

select:focus + .focus {
    position: absolute;
    top: -1px;
    right: -1px;
    left: -1px;
    bottom: -1px;
    border: 2px solid var(--select-focus);
    border-radius:inherit;
}

select[multiple] {
    padding-left: 0;
    /*
     * Safari will not reveal an option
     * unless the select height has room to
     * show all of it
     * Firefox and Chrome allow showing
     * a partial option
     */
    height: 6rem;
    /*
     * Experimental - styling of selected options
     * in the multiselect
     * Not supported crossbrowser
     */
}
select[multiple] option {
    white-space: normal;
    outline-color: var(--select-focus);
}

.select--disabled {
    cursor: not-allowed;
    background-color: #eee;
    background-image: linear-gradient(to top, #ddd, #eee 33%);
}

label {
    font-size: 1.125rem;
    font-weight: 500;
}

.select + label {
    margin-top: 2rem;
}

.plus-minus-input input{
    text-align: center;
    font-size: large;
}

.causes .thumb img{
    height: 288px;
}

.plans .plan .plan-content {
    /* border: 2px solid #e1e2e7; */
    text-align: center;
}
.tab-link.active span:nth-of-type(1){
    color: #fff;
}
@media(max-width:767px) {
    .causes .thumb img{
        height: auto;
    }
    .tab-link {
        width: 60px;
        height: 60px;
        flex-direction: column;
        font-size: 12px;
    }
    .tab-link span:nth-of-type(1) {
        /*font-family: sans-serif;*/
        font-size: 16px;
    }
    .one-circle {
        transform: scale(0.6);
    }
    .tabs:before {
        margin-top: 25px;
    }
}
