body {
    background: #F7F7F7;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: black;
}


a {
    text-decoration: none !important;
}



p {
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins ", sans-serif;
    font-weight: 600;
}


h1 {
    font-size: 36px;
    color: #1e3c72;

}


h2 {
    font-size: 28px;
    color: #0082c8;
}

h3 {
    font-size: 22px;
    color: #1e3c72;
}


h5 {
    font-size: 18px;
    color: black;
    padding-bottom: 0px;
}


h6 {
    font-size: 10px;
    color: #667db6;
}

.cabecera-01 {
    width: 100%;
}

.top-01 {
    background: #667db6;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #667db6, #0082c8, #0082c8, #667db6);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #667db6, #0082c8, #0082c8, #667db6);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    padding-top: 10px;
    padding-bottom: 10px;
}

.logo-01 {
    width: 300px;
}

.btn {
    padding: 8px 24px 8px 24px;
    border-radius: 0px;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-light {
    background-color: transparent !important;
    border: 2px solid white !important;
    color: white !important;
}

.btn-light:hover {
    background-color: white !important;
    color: black !important;
}

.btn-warning:hover {
    background-color: yellow;
}

.boton {
    padding: 2px !important;
    margin: 2px !important;
}

.menu-01 {
    background: #1e3c72;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #2a5298, #1e3c72);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #2a5298, #1e3c72);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    padding-top: 15px;
    padding-bottom: 15px;
}

.menu-01 .nav-link {
    color: white !important;
    font-size: 18px !important;
    font-weight: 600;
    text-transform: uppercase;
}

.menu-01 .nav-link:hover {
    color: aquamarine !important;
}

.menu-01 .nav-item .active {
    color: aquamarine !important;
}

.menu-01 .nav-item {
    margin-right: 18px !important;
}

.slider-01 {
    padding: 0;
    margin: 0;
}

.promos {
    background-color: white;
    padding-top: 90px;
    padding-bottom: 90px;
}

.img-promo {
    width: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin: 6px;
}

.promos h2 {
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 30px;
}

.deportes {
    background: #ADA996;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #EAEAEA, #DBDBDB, #F2F2F2, #ADA996);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #EAEAEA, #DBDBDB, #F2F2F2, #ADA996);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    padding-top: 90px;
    padding-bottom: 90px;
}

.deportes h2 {
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 30px;
}



/* Deportes */
.product {
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.product-category {
    padding: 0 10vw;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 40px;
    text-transform: capitalize;
}

.product-container {
    padding: 0 10vw;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.product-container::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 auto;
    width: 300px;

    margin-right: 40px;
}

.product-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.product-thumb {
    width: 300px;
    object-fit: cover;
}

.product-info {
    width: 100%;
    height: 100px;
    padding-top: 4px;
}

.product-brand {
    text-transform: uppercase;
    text-align: center;
}

.actual-price {
    margin-left: 20px;
    opacity: 0.5;
    text-decoration: line-through;
}

.pre-btn,
.nxt-btn {
    border: none;
    width: 10vw;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    cursor: pointer;
    z-index: 8;
}

.pre-btn {
    left: 0;
    transform: rotate(180deg);
}

.nxt-btn {
    right: 0;
}

.pre-btn img,
.nxt-btn img {
    opacity: 0.2;
}

.pre-btn:hover img,
.nxt-btn:hover img {
    opacity: 1;
}

.collection-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

.collection {
    position: relative;
}

.collection img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    font-size: 50px;
    text-transform: capitalize;
}

.collection:nth-child(3) {
    grid-column: span 2;
    margin-bottom: 10px;
}



.casino {
    background: #283c86;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #45a247, #283c86);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #45a247, #283c86);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    padding-top: 90px;
    padding-bottom: 90px;
}

.casino h2 {
    color: white;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 30px;
}

.casino video {
    padding: 8px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.premios {
    background-color: white;
    padding-top: 90px;
    padding-bottom: 90px;
}

.premios h2 {
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 30px;
}

.img-premios {
    width: 100%;
    padding: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.centro {
    background: #ADA996;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #EAEAEA, #DBDBDB, #F2F2F2, #ADA996);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #EAEAEA, #DBDBDB, #F2F2F2, #ADA996);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    padding-top: 90px;
    padding-bottom: 90px;
}

.centro h2 {
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 30px;
}

.text-centro-01 {
    text-align: center;
    padding-top: 20px;
}

.img-centro {
    width: 160px;
}

.centro .col {
    text-align: center;

}

.apuesta {
    background: #FFEEEE;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #DDEFBB, #FFEEEE);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #DDEFBB, #FFEEEE);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    padding-top: 90px;
    padding-bottom: 90px;
}

.apuesta h2 {
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 30px;
}


/* Style the tab */

.tabs-01 {
    padding-bottom: 30px;
}

.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

.tablinks {
    text-transform: uppercase;
    color: #283c86;
    font-weight: 600;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    width: 258px;
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #1e3c72;
    color: white;
}

/* Style the tab content */
.tabcontent {
    background-color: white;
    display: none;
    padding: 6px 12px;
    border: 1px solid #bdbdbd;
    border-top: none;
    padding: 30px;
}

/* pie de pagina */
.pie-01 {
    background-color: #1e3c72;
    padding-top: 90px;
    padding-bottom: 30px;
}

.logo-pie {
    width: 400px;
}

.pie-01 p {
    text-transform: uppercase;
    color: white;
    width: 400px;
    text-align: justify;
}

.pie-01 h5 {
    color: aquamarine;
    text-transform: uppercase;
}

.pie-01 .nav-link {
    text-transform: uppercase;
    color: white;
    font-size: 14px !important;
}

.pie-01 .nav-link:hover {
    color: aquamarine;
}

.redes {
    padding-top: 20px;
}

.redes .nav-link {
    padding-right: 4px !important;
}

.copyright {
    background-color: black;
    padding-top: 20px;
    padding-bottom: 10px;
}

.copyright p {
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
}

.cuerpo-01 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.img-banner-01 {
    width: 100%;
}

.img-dep-01 {
    width: 100%;
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.dep-cont {
    padding: 30px;
}

.conte-box {
    padding-bottom: 30px;
}

.centro-tex {
    text-align: center;
    padding-bottom: 30px;
}

.acordion-01 {
    padding-top: 30px;
}

.accordion-button {
    color: #1e3c72;
    font-weight: 600;
}

.casino-box-01 {
    padding-bottom: 30px;
}

.img-casino-01 {
    width: 100%;
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.videos-casino {
    padding-top: 30px;
}

.videos-casino video {
    width: 100%;
    padding: 10px;
}

.bono-box-01 {
    padding-bottom: 30px;
}

.img-bono-01 {
    width: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.leatad-box {
    padding-bottom: 30px;
}

.reintegro {
    text-align: center;
    width: 80%;
    padding-bottom: 40px;
    margin: 0 auto;
}

.img-leatad {
    width: 100%;
}

.tab-02 .tab button {
    width: 183px;
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

.tab-02 .tab button.active {
    background-color: #1e3c72;
    color: white;
}

.tab-02 .tablinks {
    font-size: 12px !important;
    text-transform: uppercase;
    color: #283c86;
    font-weight: 600;
}