body {
    background-color: white;
    font-family: "Acer Foco", sans-serif;
    font-size: 1em;
    margin: 0px;
}

.logo-acer{
    float:right; 
    width: 100px;
}
header {
    height: 50px;
}
img {
    border:0px;
}
.legal {
    font-size: .8em;
    text-align: center;
}
input{
    width: 80%;
    max-width: 300px;
}

select {max-width: 150px;}
#logo-acer {
    width: 100%;
    height: auto;
    max-height: 50px;
}

#logo-acer img {
    max-height: 50px;
}

#logo-club {
    width: 20%;
}

#logo-club img {
    width: 100px;
}

#clubMain {
    width: 100%;
    border: 0;
}

.bannerImage-container {
    position: relative;
}

.bannerImage-small {
    position: relative;
}

h3 {
    font-size: larger;
}

.bannerText-Center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}


.bannerText-BottomCenter {
    position: absolute;
    bottom: 1%;
    left: 50%;
    transform: translate(-50%, -1%);
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}

.bannerText-Bottomleft {
    position: absolute;
    bottom: 1%;
    left: 1%;
}

.bannerText-BottomRight {
    position: absolute;
    bottom: 1%;
    right: 1%;
}

.bannerText-UpperRight {
    position: absolute;
    top: 1%;
    right: 1%;
}

.bannerImage-container img {
    max-width: 100%;
    height: auto;
}

.bannerImage-small img {
    max-width: 100%;
    height: auto;
}

.transparentButton {
    background-color: transparent;
    border: 3px solid rgba(128, 195, 67, 1);
    border-radius: 5px;
    padding: 0px;
    width: fit-content;
    text-align: center;
    align-content: center;
    display: inline-flex;
}

.windowsButton {
    background-color: rgba(0, 120, 215, 1);
    border: 3px solid rgba(0, 120, 215, 1);
    color: rgb(240, 237, 237);
    border-radius: 5px;
    padding-left: 30px;
    padding-right: 30px;
    height: 35px;
    width:fit-content;
    text-align: center;
    font-size: 1.5em;
    text-decoration: none;
    align-content: center;
    display: inline-flex;
}

.ventanaAgendar {
    display: none; /* Hidden by default */ 
    z-index: 1; /* Sit on top */
    position: absolute;
    border-radius: 5px;
    top: 0%;
    left: 10%;
    width: auto; /* Full width */
    height: auto; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: #ffffff; /* Fallback color */ 
    padding-top: 0px;
    transform: translate(0%, 0%);
    text-align: left;
    font-size: .8em;
}
.opcionesAgendar{
    background-color: 1px solid rgba(0, 120, 215, .4); 
    margin: 0% auto 0% auto; /* 5% from the top, 15% from the bottom and centered */
    width: 100%; /* Could be more or less, depending on screen size */
    height: 500px;
}
.opcionesAgendar p a{
    text-decoration: none;
    color: #000000;
}
.opcionesAgendar p{
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 0px;
}

.helptext, .errorlist {
     background-color: yellow;
}
 
#id_purchaseserial_error{
     background-color: yellow;
}

input[type="text"] {
    text-transform: uppercase;
}

.greenButton {
    color: rgb(0, 0, 0);
    background-color: rgba(128, 195, 67,1);
    border: 2px double rgba(128, 195, 67, .5);
    border-radius: 5px;
    padding: 0px;
    width: fit-content;
    text-align: center;
    align-content: center;
    display: inline-flex;
}
.greenButton img{
    width:20px;
}

.blueButton {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 174, 205);
    border: 2px double rgb(0, 174, 205);
    border-radius: 5px;
    padding: 0px;
    width: fit-content;
    text-align: center;
    align-content: center;
    display: inline-flex;
}
.blueButton img{
    width:20px;
}
.greenText {
    color: rgb(128, 195, 67);
    padding: 5px;
}

.whiteText {
    color: rgb(255, 255, 255);
    padding: 5px;
}

.blackText {
    color: rgb(0, 0, 0);

}

a.transparentButton {
    align-self: center;
    align-items: center;
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 10px;
}

a.greenButton {
    align-self: center;
    align-items: center;
    color: rgb(255, 255, 255);
    text-decoration: none;
    padding: 10px;
}

a.blueButton {
    align-self: center;
    align-items: center;
    color: rgb(222, 255, 255);
    text-decoration: none;
    padding: 10px;
}

.responsive {
    padding: 0 0 0 0;
    border: 0em;
    float: left;
    width: 50%;
}


@media only screen and (max-width: 500px) {
    .responsive {
        width: 100%;
    }

    .bannerText-Center {
        position: absolute;
        top: 0%;
        left: 0%;
        transform: translate(0%, 0%);
        text-align: center;
    }
    
    .bannerText-BottomCenter {
        position: absolute;
        top: 0%;
        left: 0%;
        transform: translate(0%, 0%);
        text-align: center;
    }

    .greenButton{
        display:inline-flex;
        background-color: rgba(128, 195, 67, .8);
        border-radius: 25px;
    }

    .greenButton .labelSocialMedia{
        display: none;
    }

    .blueButton{
        display:inline-flex;
        background-color: rgba(0, 174, 205, .5);
        border-radius: 25px;
    }
    .blueButton .labelSocialMedia{
        display: none;
    }

}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

img .icoClass {
    width: 20px;
}


.topnav {
    overflow: hidden;
    background-color: rgb(255, 255, 255);
}

.topnav a {
    float: left;
    display: block;
    color: rgb(126, 138, 116);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav a.active {
    background-color: rgb(255, 255, 255);
}

.topnav .iconMenu {
    display: none;
}

@media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {
        display: none;
    }

    .topnav button.iconMenu {
        float: right;
        display: block;
        padding: 10;
    }
    .topnav a.iconMenu {
        float: right;

        display: block;
    }
}

@media screen and (max-width: 600px) {
    .topnav.responsive {
        position: relative;
    }

    .topnav.responsive .iconMenu {
        position: absolute;
        right: 0;
        top: 0;
    }

    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}
iframe{
    scroll-margin-bottom: 0;
}

h1 {
    text-align: center;
  }
  h2 {
    border-top: 1px solid grey;
    border-bottom: 1px solid grey;
  }
  main {
    margin: 20px; 
  }
  #fechaprom {
    display: inline;
  }
  .listado {
    box-sizing: border-box;
  }

  .listadoul:after {
    content: "";
    display: table;
    clear: both;
  }

  .listadoul li {
    margin: 2px;
    float: left;
    width: 23%;
    padding: 0px;
  }

  @media screen and (max-width: 900px) {
    .listadoul li {
      width: 45%;
    }
  }

  @media screen and (max-width: 600px) {
    .listadoul li {
      width: 95%;
    }
  }







h2.wheretobuy {
            font-size: 1.8em;
        }

img.wheretobuy {
            width: 100%;
        }

div.wheretobuy a {
            color: grey;
            text-decoration: none;
            border: 1px solid grey;
            padding: 10px;
        }

div.wheretobuy a:hover {
            color: grey;
            text-decoration: none;
            border: 5px solid grey;
            padding: 10px;
        }

ul.wheretobuy {
            list-style-type: none;

        }

.retailers {
            justify-content: center;
            display: flex;
            flex-wrap: wrap;
            padding: 0 4px;
        }

.retailer {
            flex: 15%;
            background-color: rgba(0, 0, 0, .1);
            border-radius: 25px;
            margin: 10px;
            padding: 20px;
            max-width: 400px;
            min-width: 200px;
        }

.bannerText-UpperRight h2 {
            font-size: 3em;
        }

@media screen and (max-width: 650px) {
    .retailers {
                flex-direction: column;
            }

    .bannerText-UpperRight h2 {
                font-size: 1.5em;
            }

    .bannerText-UpperRight {
                background-color: rgba(254, 254, 254, .6);
            }
}


#myInput {
            background-position: 10px 10px;
            background-repeat: no-repeat;
            width: 100%;
            font-size: 16px;
            padding: 12px 20px 12px 40px;
            border: 1px solid #ddd;
            margin-bottom: 12px;
        }

#myTable {
            border-collapse: collapse;
            width: 100%;
            border: 1px solid #ddd;
            font-size: 18px;
        }

#myTable th,
#myTable td {
            text-align: left;
            padding: 12px;
        }

#myTable tr {
            border-bottom: 1px solid #ddd;
        }

#myTable tr.header,
#myTable tr:hover {
    background-color: #f1f1f1;
}
