.select2.select2-container {
    width: 100% !important;
}

.select2.select2-container .select2-selection {
    border: 1px solid #ccc;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    height: 38px;
    outline: none !important;
    transition: all .15s ease-in-out;
}

.select2.select2-container .select2-selection .select2-selection__rendered {
    color: #333;
    line-height: 40px;
    padding-right: 33px;
}

.select2.select2-container .select2-selection .select2-selection__arrow {
    background: #f8f8f8;
    border-left: 1px solid #ccc;
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
    height: 36px;
    width: 33px;
}


/*loader*/

.ribbon-box .ribbon {
    display: inline-block;
    position: absolute;
    right: 35px;
    top: 45px;
}

.ribbon-box .ribbon:before,
.ribbon-box .ribbon:after {
    content: "";
    display: block;
    position: absolute;
    height: 10px;
    bottom: -8px;
    border: 18px solid #ed3910;
}

.ribbon-box .ribbon:before {
    border-bottom-color: transparent;
    bottom: -40px;

}

.inner {
    width: 100%;


}

.box {
    width: 90%;
    margin: auto;
}

body {
    font-family: nunito;
}

#loading-progress {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.7;
    background-color: #000000b5;
    z-index: 99;
    color: #fff;
}

.load {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 10px solid transparent;
    border-top: 10px solid #C41E3A;
    border-bottom: 10px solid #C41E3A;
    animation: rotateAntiCW 1.8s linear infinite;
}

.load::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 10px solid transparent;
    border-left: 10px solid #C9CC3F;
    border-right: 10px solid #C9CC3F;
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes rotateAntiCW {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading {
    left: 50%;
    top: 60%;
    font-size: 26px;
    font-family: serif;
    font-weight: bold;
    letter-spacing: 4.4px;
    text-transform: capitalize;
    position: absolute;
    overflow: hidden;
    transform: translate(-50%, -60%);
}

.loading:before {
    color: #000;
    content: attr(data-loading-text);
}

.loading:after {
    top: 0;
    left: 0;
    width: 0;
    opacity: 1;
    color: #FFF;
    overflow: hidden;
    position: absolute;
    content: attr(data-loading-text);
    animation: loading 5s infinite;
}

@keyframes loading {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}