.container {
    /*max-width: 960px;*/
    /*width: auto;*/
    /*padding: 0 15px;*/
}

#wrapper {
    margin: 0 auto;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    overflow-y: visible;
    outline: none;
}

#main-content {
    padding: 25px 30px 15px;
    transition: margin .3s ease-out;
    width: 100%;
    box-sizing: border-box;
}

.lh-condensed {
    line-height: 1.25;
}

.footer {
    background-color: #343A40;
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg)
    }
}

#loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    /*background: rgba(0,0,0,0.75) url(https://media3.giphy.com/media/3oEjI6SIIHBdRxXI40/giphy.gif) no-repeat center center;*/
    background: rgba(0, 0, 0, 0.75) no-repeat center center;
    z-index: 10000;
    /*animation:spin 6s linear infinite;*/
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotate(360deg);
    }
}

.spinner {
    min-width: 30px;
    min-height: 30px;
}

.spinner:before {
    content: 'Loading…';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75px;
    height: 75px;
    margin-top: -10px;
    margin-left: -10px;
}

.spinner:not(:required):before {
    content: '';
    border-radius: 50%;
    border: 5px solid #ccc;
    border-top-color: #07d;
    animation: spinner .9s linear infinite;
    -webkit-animation: spinner .9s linear infinite;
}

/* custom style select2 */
select[readonly].select2-hidden-accessible + .select2-container {
    pointer-events: none;
    touch-action: none;
}

select[readonly].select2-hidden-accessible + .select2-container .select2-selection {
    background: #eee;
    box-shadow: none;
}

select[readonly].select2-hidden-accessible + .select2-container .select2-selection__arrow,
select[readonly].select2-hidden-accessible + .select2-container .select2-selection__clear {
    display: none;
}

/* ***************** */

/* custom style payment-methods */
.payment-methods {
    padding-left: 0;
    list-style: none;
    margin-left: -2px;
    color: #555
}

.payment-methods > li {
    display: inline-block;
    /*padding:2px;*/
    vertical-align: top
}

.payment-methods > li > i {
    display: block !important;
    cursor: default;
    padding: 4px;
    font-size: 18px;
    line-height: 1;
    background: 0 0;
    border: 1px solid transparent;
    /*border-radius:3px*/
}

.payment-methods.payment-methods-i > li > i, .payment-methods.payment-methods-inverse > li > i {
    color: #fff;
    background: #555;
    border-color: #555
}

.payment-methods.payment-methods-o > li > i, .payment-methods.payment-methods-outline > li > i {
    color: #555;
    border-color: #555
}

/* ***************** */

/* custom style processOrder Pages */
.hero-heading {
    text-transform: uppercase;
    letter-spacing: 0.075em;
    margin-bottom: 2rem;
    font-size: 3.25rem;
}

#wrapper {
    background-color: #F2F2F2 !important;
}

/* Avaliação da compra */
.starrating > input {
    display: none;
}

/* Remove radio buttons */

.starrating > label:before {
    content: "\f005"; /* Star */
    margin: 8px;
    font-size: 2.5em;
    font-family: FontAwesome;
    display: inline-block;
}

.starrating > label {
    color: #222222; /* Start color when not clicked */
    cursor: pointer;
}

.starrating > input:checked ~ label {
    color: #ffca08;
}

/* Set yellow color when star checked */

.starrating > input:hover ~ label {
    color: #ffca08;
}

/* Set yellow color when star hover */
/* ***************** */

/* Effect Continue Button */
.loading-effect {
    font-size: 0;
    width: 30px;
    height: 30px;
    margin-top: 5px;
    border-radius: 15px;
    padding: 0;
    border: 3px solid #07d;
    border-bottom: 3px solid rgba(255, 255, 255, 0.0);
    border-left: 3px solid rgba(255, 255, 255, 0.0);
    background-color: transparent !important;
    animation-name: rotateAnimation;
    -webkit-animation-name: wk-rotateAnimation;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes rotateAnimation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes wk-rotateAnimation {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

.loading-effect-hide-loading {
    opacity: 0;
    -webkit-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
    -webkit-transform: scale(0) !important;
    transform: scale(0) !important;
}

/* **************** */

/* Input spinner */
input[type="text"].inputspinner,
input[type="password"].inputspinner,
input[type="datetime"].inputspinner,
input[type="datetime-local"].inputspinner,
input[type="date"].inputspinner,
input[type="month"].inputspinner,
input[type="time"].inputspinner,
input[type="week"].inputspinner,
input[type="number"].inputspinner,
input[type="email"].inputspinner,
input[type="url"].inputspinner,
input[type="search"].inputspinner,
input[type="tel"].inputspinner,
input[type="color"].inputspinner {
    background-image: url("../img/input-spinner.gif") !important;
    background-repeat: no-repeat;
    background-position: right 8px;
}

.btn-password {
    position: relative;
    bottom: 33px;
    left: 85%;
    border: none;
    background: #fff;
}