
html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background: url('../img/background.png') center repeat-y;
    background-size: 100% auto;

    font-family: 'Twix Highlight';
}

a {
    color: inherit;
    text-decoration: none;
}

/* common */
.title {
    color: #3d1e13;
    font-size: 80px;
    line-height: 1;
    text-transform: uppercase;
    margin-top: -25px;
}
.subtitle {
    color: #3d1e13;
    font-size: 50px;
    line-height: 1;
    text-transform: uppercase;
}
.separator {
    width: auto;
    border-bottom: 2px solid white;
    opacity: .5;
    margin: 70px 100px;
}
.header {
    color: #3d1e13;
    font-size: 40px;
    line-height: 50px;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.small {
    color: #3d1e13;
    font-size: 20px;
    line-height: 22px;
    text-transform: uppercase;
    margin-top: 30px;
}
.tiny {
    color: #3d1e13;
    opacity: .5;
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 20px;
    text-align: left;
}

.btn {
    width: 300px;
    height: 60px;
    border: 0px;
    border-radius: 10px;
    font-family: inherit;
    color: white;
    text-transform: uppercase;
    outline: none;
	cursor: pointer;
    transition: all 0.5s;
    
    
}
.btn.red-btn {
    font-size: 24px;
    letter-spacing: 3px;
    background-color: #ed1c24;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, .3);
}
.btn.red-btn:active,
.btn.red-btn:hover {

    color: #ed1c24;
    background-color: #fff;

}
.btn.green-btn {
    font-size: 15px;
    letter-spacing: 2.5px;
    background-color: #3b5998;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, .3);
}
.btn.green-btn:active,
.btn.green-btn:hover {
    color: #3b5998;
    background-color: #fff;

}
.btn.yellow-btn {
    font-size: 15px;
    letter-spacing: 2.5px;
    background-color: #e69e2f;
}
.btn.yellow-btn:active,
.btn.yellow-btn:hover {
    font-size: 15px;
    letter-spacing: 2.5px;
    color: #e69e2f;
    background: #fff;
}

.textbox::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */

    color: #3d1e13;
}

.textbox:-ms-input-placeholder { /* Internet Explorer 10-11 */

    color: #3d1e13;
}

.textbox::-ms-input-placeholder { /* Microsoft Edge */

    color: #3d1e13;
}

.textbox {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;

    width: 300px;
    height: 60px;
    border: 3px solid #371910;
    border-radius: 10px;
    background-color: rgba(235, 178, 91, .8);
    font-family: inherit;
    font-size: 16px;
    text-align: center;
    color: #3d1e13;
    text-transform: uppercase;
    letter-spacing: 3px;
    outline: none;
}
.checkbox {
    display: block;
    position: relative;
    width: 100%;
    font-size: 14px;
    line-height: 22px;
    color: #3d1e13;
    text-align: left;
    text-transform: uppercase;
    padding: 4px 0px 4px 40px;
}
.checkbox::before {
    content: " ";
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    width: 30px;
    height: 30px;
    display: block;
    background-color: rgba(235, 177, 91, 0.8);
    border: 3px solid #3d1e13;
    border-radius: 5px;
    position: absolute;
    left: 0;
    opacity: 0.2;
}
.checkbox::after {
    content: "";
    width: 30px;
    height: 30px;
    display: none;
    background: url('../img/icon_visto.png') no-repeat;
    background-size: auto 26px;
    position: absolute;
    top: 2px;
    left: 4px;
}
input[type="checkbox"]:checked + .checkbox::after{
    display: block;
}
.form {
    width: 630px;
}
.blur {
    filter: blur(6px);
    -webkit-filter: blur(6px);
    -moz-filter: blur(6px);
    -o-filter: blur(6px);
    -ms-filter: blur(6px);
    filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius="6");
}

.hide {
    display: none;
}


/* ... */
#page {
    max-width: 1280px;
    margin: auto;
    text-align: center;
    position: relative;
    min-height: 100%;

    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-content: stretch;
}

#navigation {
    padding: 45px 40px 0px;
    text-align: center;
    display: block;
    min-height: 120px;
    height: 120px;
    align-self: center;
}
#logo {
    position: absolute;
    top: 55px;
    left: 45px;
    z-index: 10;
}
#logo img {
    width: 260px;
    height: auto;
}
#logo-delta {
    display: none;
}

#page-list {
    display: inline-block;
    margin: 5px auto;
    padding: 0;
}
#page-list li {
    display: inline-block;
    color: white;
    font-size: 18px;
    letter-spacing: 2px;
    margin-left: 40px;
    position: relative;
}
#page-list li, #page-list li a{
    cursor:pointer;
    transition: all 0.3s;
}
#page-list li a:hover, #page-list li:hover {

    color: #3d1e13;

}
#page-list li:first-child {
    margin-left: 0;
}
#page-list li[data-selected] {
    color: #3d1e13;
}
#page-list li[data-selected]:after {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 0;
    border: 2px solid #3d1e13;
    border-radius: 2px;
}
#premios-link {
    cursor: pointer;
}

#cont-1,
#cont-2,
#cont-3,
#cont-4 {
    margin-bottom: 160px;
}

#participate {
    margin-top: 50px;
}
#cod-input {
    margin-top: 42px;
}
#email-verify {
    margin-top: 20px;
}

#checks {
    margin: 28px auto 0px;
}

#checks .checkbox {
    margin-bottom: 10px;
}

#continuar {
    margin-top: 20px;
}

#return {
    margin-top: 90px;
}
#coffee {
    margin-top: 20px;
}

#form {
    margin-top: 30px;
}

#form {
    display: inline-flex;
    flex-flow: row wrap;
    
    justify-content: space-between;
}
#form .textbox {
    width: 309px;
    height: 50px;
    margin-bottom: 20px;
}
#form #address.textbox {
    width: 100%;
}
#form .textbox.small-textbox {
    width: 180px;
}
#form .textbox.medium-textbox {
    width: 250px;
}
#send {
    margin-top: 15px;
}

#success {
    position: fixed;
    top: 0; bottom: 0;
    left: 0; right: 0;
    z-index: 10;
    background-color: rgba(61,30,19,0.8);
    text-align: center;
}
#success .subtitle {
    color: white;
}
#success .form {
    margin: 220px auto 0px;
}
#coffee2 {
    margin-top: 80px;
}
#return2 {
    margin-top: 20px;
}

.prizes {
    padding-bottom: 90px;
}

#twix-bars {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}
.twix-bar {
    position: relative;
    width: 520px;
    height: 400px;
    margin-bottom: 40px;
}
.twix-background {
    display: block;
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    margin: auto;
    width: 400px;
    height: 400px;
    box-sizing: border-box;
    background-color: #e5a23c;
    border-radius: 210px;
}
.twix-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
}
.twix-description {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 50px;
}
#images-container {
    position: relative;
    margin-bottom: 50px;
}
#image-previews {
    position: absolute;
    left: 100px;
    width: 200px;
    text-align: left;
}
.preview {
    opacity: .3;
    cursor: pointer;
}
.preview-selected {
    opacity: 1;
}
#previews {
    text-align: left;
    margin-top: 25px;
}
#images {
    margin: 60px auto 10px;
    width: 432px;
}
#images .owl-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    width:0;
    margin: 0;
    display: flex;
    justify-content: space-between;
}
#images .owl-prev,
#images .owl-next {
    background: none;
    border-radius: 0px;

    display: block;
    width: 40px;
    height: 40px;
    font-family: 'Twix Icons';
    color: #3d1e13;
    font-size: 40px;
    padding: 0;
    position: absolute;
    transform: translate(0%, -50%);
    line-height: 29px;
}

#images .owl-prev {
    right: 241px;
}
#images .owl-prev::before {
    content: "\e901";
}

#images .owl-next {
    left: 241px;
}
#images .owl-next::before {
    content: "\e900";
}
/* #videos .owl-nav div {
  position: fixed;
  top: 50%;
} */

#videos {
    width: 70%;
    margin: auto;
}

#videos .owl-prev {
  left: 5px;
}

#videos .owl-next {
  right: 5px;
}

#videos .item-video {
    max-width: 100%;
}
#videos .owl-video-tn {
  background-size: cover;
}
#videos .owl-video-frame iframe {
	height: 100%;
}

#videos-mobile {
    display: none;
}
#videos-mobile img:first-child {
    margin-top: 0px;
}
#videos-mobile img {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    margin: 20px auto 0px;
}

#coffee3 {
    margin-top: 50px;
}
#return3 {
    margin-top: 20px;
}

#footer {
    /* min-height: 250px; */
    margin-top: auto;
    position: absolute;
    width: 100%;
    bottom: -50px;
}
#l-stick,
#c-stick,
#r-stick{
    position: absolute;
    bottom: 0;

    background-image: url('../img/r-stick.png');
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: contain;
    
    pointer-events: none;
}
#l-stick{
    width: 452px;
    height: 310px;
    left: 20px;

    background-image: url('../img/l-stick.png');
    background-position: right bottom;
}
#c-stick{
    width: 532px;
    height: 208px;
    left: 50%;
    transform: translate(-49%, 0);
    z-index: 1;
    margin-left: 45px;
    background-image: url('../img/chavena.png');
    background-position: center bottom;
}
#r-stick{
    width: 418px;
    height: 310px;
    right: 40px;
}

#footer.side {
    min-height: 160px;
    overflow: hidden;
}
.side #l-stick{
    height: 153px;
    width: 305px;
    background-position: right top;
    background-size: auto;
}
.side #c-stick{
    height: 88px;
    background-position: center top;
    background-size: auto;
}
.side #r-stick{
    height: 153px;
    width: 290px;
    background-position: left top;
    background-size: auto;
}

#topLeft{
    position: absolute;
    top:0px;
    right: 0px;
    height: 334px;
    width: 332px;background-image: url(../img/oval-3.png);
    background-repeat: no-repeat;
    background-size: contain;
}

#prize{
    position: absolute;
    width: 285px;
    height: 247px;
    background-image: url(../img/maquina-de-cafe.png);
    background-repeat: no-repeat;
    background-size: contain;
    top: 60px;
    right: 65px;
}

#moreBtn{
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: url(../img/bot-o.png);
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 80px;
    top: 60px;
    right: 32px;
    transition: transform 1s;
    cursor: pointer;
}
#deltaLogo{
    position: absolute;
    width: 105px;
    height: 36px;
    background-image: url(../img/logo-delta-q.png);
    background-repeat: no-repeat;
    background-size: contain;
    top: 265px;
    right: 50px;
    transition: transform 1s;
    cursor: pointer;
}
#lessBtn{
    position: absolute;
    width: 80px;
    height: 80px;
    background-color:#ce831f;
    border-radius: 80px;
    top:60px;
    right: 60px;
    transition: transform 1s;
    cursor: pointer;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, .3);
    display: none;
}
#lessBtn:after{
    content: " ";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #3d1e13;
    height: 1px;
    background-color: #3d1e13;
    border-radius: 2px;
    width: 20px;
}


#moreBtn:hover, #lessBtn:hover{
    transform:scale(0.8);
    border-radius:64px;

}

.item-video{
    display: inline-block;
    width:356px;
    height: 200px;
}

#videos.owl-carousel .owl-nav.disabled {
    display: block;
}

#videos .owl-prev, #videos .owl-next{
    border-radius: 60px;
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.3);
    padding: 4px;
}

#videos .owl-prev{
    float: left;
    margin-left: 20px;
    transform: translateY(-56%);
}

#videos .owl-next{
    float: right;
    margin-right: 20px;
    transform: translateY(-56%);
}

#videos .owl-nav {
    margin-top: 0px;
    position: absolute;
    top: 50%;
    width: 100%;
    width: 130%;
    height: 0px;
    margin-left: -15%;
}

#videos .owl-next::after{
    content: " ";
    border-right: 3px solid;
    border-bottom: 3px solid;
    height: 25px;
    /* width: 20px; */
    transform: rotate(-45deg);
    width: 25px;
    border-color: #3d1e13;
    display: block;
    padding: 0px;
    margin: 15px 10px;
}
#videos .owl-prev::after{
    content: " ";
    border-right: 3px solid;
    border-bottom: 3px solid;
    height: 25px;
    /* width: 20px; */
    transform: rotate(135deg);
    width: 25px;
    border-color: #3d1e13;
    display: block;
    padding: 0px;
    margin: 15px 20px;
}
#videos .owl-next:hover,
#videos .owl-prev:hover,
#videos .owl-next:active,
#videos .owl-prev:active {
    background-color: #3d1e13;
}
#videos .owl-next:hover::after,
#videos .owl-prev:hover::after,
#videos .owl-next:active::after,
#videos .owl-prev:active::after {
    border-color: white;
}
#ham{
    display: none;
}

label .menu {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 100;
    width: 80px;
    height: 80px;
    background: #FFF;
    border-radius: 50% 50% 50% 50%;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    -webkit-box-shadow: 0 0 0 0 #FFF, 0 0 0 0 #FFF;
            box-shadow: 0 0 0 0 #FFF, 0 0 0 0 #FFF;
    cursor: pointer;
  }
  label .hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 2px;
    background: #3d1e13;
    display: block;
    transform: translate(-50%, -50%);
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
  }
  label .hamburger:after, label .hamburger:before {
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: #3d1e13;
  }
  label .hamburger:before {
    top: -10px;
  }
  label .hamburger:after {
    bottom: -10px;
  }
  label input {
    display: none;
  }
  label input:checked + .menu {
    -webkit-box-shadow: 0 0 0 100vw #FFF, 0 0 0 100vh #FFF;
            box-shadow: 0 0 0 100vw #FFF, 0 0 0 100vh #FFF;
    border-radius: 0;
  }
  label input:checked + .menu .hamburger {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  label input:checked + .menu .hamburger:after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    bottom: 0;
  }
  label input:checked + .menu .hamburger:before {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    top: 0;
  }
  label input:checked ~ ul,
  label input:checked + .menu + ul {
    opacity: 1;
    display: block;
  }
  label ul {
    z-index: 200;
    position: absolute;
    top: 200px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
    display: none;
    -webkit-transition: .25s 0s ease-in-out;
    transition: .25s 0s ease-in-out;
    font-size: 45px;
    list-style-type: none;
    color: #3d1e13;
    padding-left: 0px;
    width: 100%;
  }
  label a {
    margin-bottom: 1em;
    display: block;
    color: #3d1e13;
    text-decoration: none;
  }

  #delta{
    position: absolute;
    width: 119px;
    height: 120px;
    background-image: url(../img/logos-delta.png);
    background-repeat: no-repeat;
    background-size: cover;
    left: 50%;
    transform: translateX(-70%);
    top: -60px;
  }

  .side #delta{
      display: none;
  }

@media (max-width:1024px){

    body {
        background-image: url('../img/background-mobile.png');
    }

    #logo-delta {
        display: block;
        margin: 30px auto 0px;
    }
    
    #images {
        margin-top: 20px;
    }
    
    #ham{
        display: block;
    }
    #topLeft{
        visibility: hidden;
    }


    #form .textbox {
        width: 100% !important;
    }
    
    #navigation{
        padding: 20px 20px 0px;
    }

    #lessBtn{
        visibility: hidden;
    }

    #page-list{
        display: none;
    }

    #l-stick {
        left:0px;
        width: 350px;
    }
    
    #r-stick {
        right:0px;
        width: 350px;
    }

    #image-previews {
        display: none;
    }
    
    #videos {
        display: none;
    }
    #videos-mobile {
        display: block;
    }

    
    .page.prizes {
        /* don't override previous padding-bottom */
        padding-left: 35px;
        padding-right: 35px;
    }
}

@media (max-width:960px){
    #l-stick {
        width: 250px;
    }

    #c-stick {
        width: 350px;
    }
    .side #c-stick {
        height: 88px;
        background-position: center top;
        background-size: cover;
    }
    
    #r-stick {
        width: 250px;
    }

     #delta{
        top: -10px;
        transform: translateX(-65%);
    }
}
#yellowbtn{
    display: none;
}
@media (max-width:700px){
    .form {
        width: 350px;
    }

    #l-stick {
        width: 200px;
    }

    #c-stick {
        width: 250px;
        margin-left: 20px;
    }
    #yellowbtn{

        position: absolute;
        display: block;
        bottom: 0;
        width: 400px;
        height: 290px;
        left: 50%;
        transform: translate(-49%, 0);
        background:  url(../img/maquina-footer.png) no-repeat center top, url(../img/oval-footer.png) no-repeat center bottom ;
        background-size: auto,100%;
    }
    .side #yellowbtn{
        display: none;
    }
    #r-stick {
        width: 200px;
    }

    .side #r-stick, .side #l-stick {
        
        width: 200px;
    }

    .title{
        font-size: 40px;
        margin-top: 0px;
    }

    .subtitle{
        font-size:30px;
    }

    .page{
        padding-bottom: 200px;
    }

    #images {
        
        width: 260px;
    }

    #images .owl-prev {
        right: 160px;
    }

    #images .owl-next {
        left: 160px;
    }

    #delta {
        top: 40px;
        transform: translateX(-65%);
        width: 40%;
        background-size: contain;
    }
    #cont-1, #cont-2, #cont-3, #cont-4 {
        margin-bottom: 0px;
    }
}

@media (max-width: 540px){
    

    .side #l-stick {
        width: 122px;
        height: 152px;
        background-image: url(../img/l-stickm.png);
    }

    
    
    .side #r-stick {
        width: 117px;
        height: 152px;
        background-image: url(../img/r-stickm.png);
    }

    .twix-bar{
        width: 300px;
        height: 300px;
    }

    .twix-background{
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px){
    #yellowbtn {
        width: 345px;
        height: 250px;
    }
    #logo img {
        width: 170px;
    }
    
    #l-stick {
        width: 123px;
        background-image: url(../img/l-stickm.png);
    }

    .form {
        width: 300px;
    }
    #c-stick {
        width: 213px;
        margin-left: 20px;
    }
    
    #r-stick {
        width: 123px;
        background-image: url(../img/r-stickm.png);
    }

    .btn {
        /*width: 215px;*/
    }

    #images .owl-prev {
        right: 145px;
    }

    #images .owl-next {
        left: 145px;
    }
}