@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto-Regular.ttf');
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto-Medium.ttf');
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto-Bold.ttf');
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto-Black.ttf');
    font-style: normal;
    font-weight: bold;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto-Italic.ttf');
    font-style: italic;
    font-weight: 400;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto-MediumItalic.ttf');
    font-style: italic;
    font-weight: 500;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto-LightItalic.ttf');
    font-style: italic;
    font-weight: 400;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto-BoldItalic.ttf');
    font-style: italic;
    font-weight: 500;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto-BlackItalic.ttf');
    font-style: italic;
    font-weight: bold;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
}

header,
footer {
    text-align: center;
}

hr {
    display: block;
    height: 2px;
    border: 0;
    border-top: 1px solid #8bbf3f;
    margin: 1em 0;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.flex {
    display: flex;
}

.spin{
    animation-name: spin;
    animation-duration: 5000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear; 
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}
.justify-space-between{
    justify-content: space-between;
}
.card {
    background: white;
    padding: 60px;
    border-radius: 4px;
    box-shadow: 0 2px 3px #C8D0D8;
    display: inline-block;
    margin: 0 auto;
}

header {
    margin: 50px 0;
}

header .logo {
    display: block;
}

.header-logo {
    height: 50px;
}

.row {
    display: flex;
}

.column-2 {
    flex: 50%;
    padding: 5px;
}

.column-3 {
    flex: 33.33%;
    padding: 5px;
}

.column-4 {
    flex: 25%;
    padding: 5px;
}

h3 {
    font-size: 1.7rem;
    font-weight: 600;
}

h6 {
    font-size: 1.2rem;
    font-weight: 500;
}

.text-center {
    text-align: center !important;
}

.btn {
    padding: 10px 20px;
    display: inline-block;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
}

a {
    text-decoration: none;
}

.justify-space-between {
    justify-content: space-between;
}

.content {
    min-height: calc(100vh - 450px);
}

.text-success {
    color: #8bbf3f;
}

.price {
    font-size: 20px !important;
    color: #7dd300 !important;
}

.text-danger {
    color: #e83c58;
}

.card h3 {
    margin-bottom: 5px;
}

.card h6 {
    margin: 15px 0;
    font-style: italic;
}

.card-content .line {
    margin-bottom: 15px;
}

.card-content .title {
    font-size: 15px;
    font-weight: 400;
    color: #82879a;
    display: inline-block;
    margin-right: 10px;
}

.card-content .desc {
    color: #222;
    font-size: 16px;
    font-weight: 600;
}

.card-content .detail {
    margin-top: 30px;
    text-align: left;
    font-size: 15px;
    color: #b59323;
}

.card-content .detail p {
    margin: 5px 0;
}

.btn-actions {
    margin-top: 40px;
}

.btn-actions .btn-success {
    margin-left: 15px;
}

.btn-success {
    background-color: #8bbf3f;
    color: #fff;
    margin-left: 1px;
    transition: all .2ms ease-in-out;

}

.btn-default {
    background-color: #a5a5a5;
    color: #fff;
}

.btn-success:hover {
    opacity: .8;
    transition: all .2ms ease-in-out;
}

.please_text {
    font-size: 15px;
    text-align: center;
}

.header-title {
    text-transform: uppercase;
    font-size: 1.2rem;
}

.formCoupon-content {
    text-transform: uppercase;
}

.payment {
    margin: 50px 0;
}

.payment-content {
    margin-bottom: 50px;
}

.payment-card {
    margin: 20px 0;
}

.payment-card img {
    width: 90%;
}

.formCoupon {
    margin-top: 30px;
    margin-bottom: 30px;
    background: #e5e5e5;
    padding: 10px 0;
}

.btn-formCoupon {
    background: #8bbf3f;
    width: 100px;
    color: #fff;
}

.btn-formCoupon-disabled {
    background: #b5b5b5;
    width: 100px;
    color: #fff;
}

footer {
    font-size: 14px;
}