.testimonial-area .carousel-indicators {
    bottom: -50px;
}

.testimonial-area .carousel-indicators li {
    border: 2px solid #fff;
}

.search-box {
    position: absolute;
    right: 0;
    top: 15px;
    background-color: #3350b9;
}

.searchbox {
    float: right;
    height: 50px;
    position: relative;
    width: 100%;
}

.searchbox-input {
    background-color: #ffffff;
    border: medium none;
    color: #544AEA;
    font-size: 14px;
    height: 30px;
    margin: 0;
    outline: 0 none;
    padding-left: 5px;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.searchbox-input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ffffff;
    text-transform: capitalize;
}

.searchbox-input::-moz-placeholder {
    /* Firefox 19+ */
    color: #ffffff;
    text-transform: capitalize;
}

.searchbox-input:-ms-input-placeholder {
    /* IE 10+ */
    color: #ffffff;
    text-transform: capitalize;
}

.searchbox-input:-moz-placeholder {
    /* Firefox 18- */
    color: #ffffff;
    text-transform: capitalize;
}

.searchbox-icon,
.searchbox-submit {
    background-color: #3350b9;
    color: #ffffff;
    cursor: pointer;
    display: block;
    font-size: 14px;
    height: 30px;
    line-height: 28px;
    margin: 0;
    outline: 0 none;
    padding: 0;
    position: absolute;
    right: 0;
    text-align: center;
    text-transform: capitalize;
    top: 0;
    width: 30px;
}

.searchbox {
    float: right;
    height: 30px;
    min-width: 30px;
    overflow: hidden;
    -webkit-transition: width 0.3s ease 0s;
    transition: width 0.3s ease 0s;
    width: 30px;
}

.searchbox-open {
    width: 350px;
}

.search_box {
    position: absolute;
    right: 0;
    top: 17px;
}

.preloader {
    background-color: #eee;
    height: 100%;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 999999;
}

.spinner {
    width: 40px;
    height: 40px;
    background-color: #3451ba;
    border-radius: 100%;
    -webkit-animation: scaleout 1.0s infinite ease-in-out;
    animation: scaleout 1.0s infinite ease-in-out;
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}

@-webkit-keyframes scaleout {
    0% {
        -webkit-transform: scale(0.0)
    }
    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes scaleout {
    0% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    100% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}