﻿
section.hasQuotesbox {
    background-color: #3b3b3a;
}

.fragment.Quotesbox {
    color:#fff;
    margin: 0 auto;
    padding: 90px 0 60px;
    max-width: 950px;
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
}

.fragment.Quotesbox .items {
    padding-bottom: 65px;
    position: relative;
}

.fragment.Quotesbox .item {
    position: absolute;
    width: 100%;
    top: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.fragment.Quotesbox .item.active {
    opacity: 1;
}

.fragment.Quotesbox .image {
    border-radius: 50%;
    border:3px solid #fff;
    margin: 0 auto 30px;
    
}

.fragment.Quotesbox .quote {
    font-size: 26px;
    line-height: 1.5;
    font-weight:300;
    margin-top: 0;
    margin-bottom: 0;
    display: inline-block;
    text-align: center;
}

.fragment.Quotesbox .name {
    font-weight: 300;
    margin-top: 14px;
}


.Quotesbox .nav {
    margin: 0 auto;
    width: 80px;
}

.Quotesbox .nav .left, .Quotesbox .nav .right {
    
    border-radius: 50%;
    width: 33px;
    height: 33px;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-repeat: no-repeat;
    background-position: center center;
    background-color:#75787b;
    background-size:6px 9px;
    
}


.Quotesbox .nav .left {
    float: left;
    background-image: url('/images/icon_arrow_left_white.svg');
}

.Quotesbox .nav .right {
    float: right;
    background-image: url('/images/icon_arrow_right_white.svg');
}

.Quotesbox .nav > div:hover {
    background-color: rgba(112, 177, 201, 1);
}

@media screen and (max-width: 650px) {


    .fragment.Quotesbox .quote {
        font-size: 18px;
    }
    .fragment.Quotesbox .name {
    font-size:16px;
    }

    .fragment.Quotesbox .items {
        padding-bottom: 40px;
    }
}
