html {
     height: 100%;
     box-sizing: border-box;
}
 *, *:before, *:after {
     box-sizing: inherit;
}
 body {
     position: relative;
     margin: 0;
     padding-bottom: 6rem;
     min-height: 100%;
}

.loginForm {
    width:500px;
}

.contentForm {
    width:900px;
}

.loginForm, .contentForm {
    background: #f4f7f8;
    margin: 10px auto;
    padding: 10px;
    background: #dedbfc;
    border-radius: 8px;
    font-family: verdana;
}
.loginForm fieldset, .contentForm fieldset{
    border: none;
}
.loginForm legend, .contentForm legend {
    font-size: 1.4em;
    margin-bottom: 10px;
}
.loginForm label, .contentForm label {
    display: block;
    margin-bottom: 8px;
}
.loginForm input[type="text"], .contentForm input[type="text"],
.loginForm input[type="date"], .contentForm input[type="date"],
.loginForm input[type="datetime"], .contentForm input[type="datetime"],
.loginForm input[type="email"], .contentForm input[type="email"],
.loginForm input[type="number"], .contentForm input[type="number"],
.loginForm input[type="search"], .contentForm input[type="search"],
.loginForm input[type="time"], .contentForm input[type="time"],
.loginForm input[type="url"], .contentForm input[type="url"],
.loginForm input[type="password"], .contentForm input[type="password"], .contentForm input[type="file"],
.loginForm textarea, .contentForm textarea,
.loginForm select, .contentForm select {
    font-family: verdana;
    background: rgba(255,255,255,.1);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    margin: 0;
    outline: 0;
    padding: 7px;
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    background-color: white;
    color:#8a97a0;
    -webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
    box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
}
.loginForm input[type="text"]:focus, .contentForm input[type="text"]:focus,
.loginForm input[type="date"]:focus, .contentForm input[type="date"]:focus,
.loginForm input[type="datetime"]:focus, .contentForm input[type="datetime"]:focus,
.loginForm input[type="email"]:focus, .contentForm input[type="email"]:focus,
.loginForm input[type="number"]:focus, .contentForm input[type="number"]:focus,
.loginForm input[type="search"]:focus, .contentForm input[type="search"]:focus,
.loginForm input[type="time"]:focus, .contentForm input[type="time"]:focus,
.loginForm input[type="url"]:focus, .contentForm input[type="url"]:focus,
.loginForm input[type="password"]:focus, .contentForm input[type="password"]:focus, .contentForm input[type="file"]:focus,
.loginForm textarea:focus, .contentForm textarea:focus,
.loginForm select:focus, .contentForm select:focus {
    background: #f4f9b3;
}
.loginForm select, .contentForm select{
    -webkit-appearance: menulist-button;
    height:35px;
}
.loginForm .number {
    background: #ffd83a;
    color: #fff;
    display: inline-block;
    padding:5px 10px;
    margin-right: 4px;
    line-height: 30px;
    text-align: center;
    text-shadow: 0 1px 0 rgba(255,255,255,0.2);
    border-radius: 15px 15px 15px 0px;
}

.contentForm .number {
    background: #ffd83a;
    color: #fff;
    display: inline-block;
    padding:5px 10px;
    margin-right: 4px;
    line-height: 30px;
    text-align: center;
    text-shadow: 0 1px 0 rgba(255,255,255,0.2);
    border-radius: 15px 15px 15px 0px;
}

.loginForm input[type="submit"], .contentForm input[type="submit"],
.loginForm button[type="submit"], .contentForm button[type="submit"],
.loginForm input[type="button"], .contentForm input[type="button"]
{
    position: relative;
    display: block;
    padding: 12px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    color: #FFF;
    background: #1abc9c;
    font-size: 18px;
    text-align: center;
    font-style: normal;
    width: 100%;
}

.loginForm input[type="submit"]:hover, .contentForm input[type="submit"]:hover,
.loginForm button[type="submit"]:hover, .contentForm button[type="submit"]:hover,
.loginForm input[type="button"]:hover, .contentForm input[type="button"]:hover
{
    background: #109177;
}

footer {
    font-size:12px;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}

div.sponsorTypeAs {
    padding-left:10%;
}

hr.style-four { border: 0; height: 1px; background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0)); }
hr.style-three { height: 12px; border: 0; box-shadow: inset 0 12px 12px -12px rgba(0, 0, 0, 0.5); }

.dropbtn {
    border-radius: 12px;
    width:150px;
    background-color: #378ee5;
    border: none;
    color: white;
    padding-left:15px;
    padding-right:15px;
    padding-top:15px;
    padding-bottom:15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    border-radius: 12px;
    display: none;
    left:-7px;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 165px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown2-content {
    bottom:6px;
    right:155px;
    border-radius: 12px;
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown3-content {
    bottom:-33px;
    left:-163px;
    border-radius: 12px;
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a, .dropdown2-content a, .dropdown3-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover, .dropdown2-content a:hover, .dropdown3-content a:hover{
    border-radius: 12px;
    background-color:#cacfe6;
}

.dropdown:hover .dropdown-content, .dropdown:hover .dropdown2-content , .dropdown:hover .dropdown3-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color:#cacfe6;
}

img.logo {
    width:238px;
    height:179px;
}

img.logo2 {
    width:306px;
    height:179px;
}

img.logo3 {
    width:482px;
    height:446px;
}

i.fa-bars {
    position: fixed;
    font-size: 40px;
    top:50px;
    left:210px;
}

i.fa-bars:hover {
     cursor:pointer;
}

img.unimap {
    width:100px;
    height:100px;
}

.navContact {
    display: block;
}
div.navContact2 {
    display: none;
}

.navContact, div.navContact2 {
    font-size:30px;
    color:white;
}

table.navBar {
    border-spacing: 10px;
}

div.imageContent {
    width: 1200px;
    margin: 10px auto;
    border-radius: 8px;
}

img.picLeftSideBar {
    width:100px;
    height:71px;
}

.tableInfo {
    width:60%;
    margin-left:auto; 
    margin-right:auto;
}

#tableInfo {
    width:30%;
}

.paddingContent {
    padding-left:100px;
    padding-right:100px;
}

#tentativeTable {
     border-collapse: collapse;
}

#tentativeTable td, #tentativeTable th{
     border: 1px solid #ddd;
     padding-top: 8px;
     padding-bottom: 8px;
}

#tentativeTable tr:nth-child(even){background-color: #f2f2f2;}

#tentativeTable tr:hover {background-color: #ddd;}

#tentativeTable th{
     padding-top: 8px;
     padding-bottom: 8px;
     text-align: center;
     background-color: #4185f2;
     color: white;
}

#normal {
    display:block;
}

#phones {
    display:none;
}

iframe.unimap {
     width:550px;
     height:450px;
}

table.contactForm {
     width: 40%;
     font-size: 16;
}
td.contactForm {
     width: 20%;
}

textarea.messageUnimap {
     width:100%;
     height:150px;
     resize:none;
     font-family:verdana;
}

input.formUnimap {
     width:100%;
     height: 25px;
}

span.form {
     font-size: 16px;
}

.buttonContact {
    position: relative;
    display: block;
    padding: 10px 16px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    color: #FFF;
    background: #1abc9c;
    font-size: 16px;
    text-align: center;
    font-style: normal;
    width: 50%;
}

.buttonContact:hover
{
    background: #109177;
}

label.phone {
    font-size:14px;
}

#phone, #fax {
    font-size:30px;
}

.titleIndex {
    width:45%;
    height:45%;
}

.titleAdmin {
    text-decoration: underline;
    font-weight: bold;
    font-size:20px;
}

#addMerc {
    width:20%;
}

.sponsorDekstop {
    display:block;
}
    
.sponsorPhone {
    display:none;
}

div.paymentTerms{
    font-size:14px;
}

.paymentTable
{
    width:50%;
}

.cartTable {
    width:55%;
}
.inputAddtoCart {
     background: rgba(255,255,255,.1);
     border: solid 1px;
     border-radius: 12px;
     font-size: 16px;
     margin: 0;
     outline: 0;
     padding-left:15px;
     padding-right:15px;
     padding-top:15px;
     padding-bottom:15px;
     width:120px;
     box-sizing: border-box;
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     background-color: #f4f9b3;
     color:#8a97a0;
     -webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
     box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
     margin-bottom: 30px;
     text-align: center;
}
 .inputAddtoCart:focus {
     background: #f0fc6a;
}
 .tableProduct {
     border-spacing: 50px;
     width:70%;
}

 .btnAddtoCart {
     background-color: #3ed64b;
}
 .btnUpdate {
     background-color: #378ee5;
}
 .btnEmpty {
     background-color: #e22828;
}
.btnAddtoCart, .btnUpdate, .btnEmpty {
     width:120px;
}

.proceedPay {
     background-color: #3ed64b;
}

 .btnAddtoCart, .btnUpdate, .btnEmpty, .proceedPay {
     border-radius: 12px;
     border: none;
     color: white;
     padding-left:15px;
     padding-right:15px;
     padding-top:15px;
     padding-bottom:15px;
     text-align: center;
     text-decoration: none;
     display: inline-block;
     font-size: 16px;
     margin: 4px 2px;
     cursor: pointer;
}
 .btnAddtoCart:hover, .proceedPay:hover {
     background-color:#72d87b;
}
 .btnUpdate:hover{
     background-color:#cacfe6;
}
 .btnEmpty:hover{
     background-color:#ea6464;
}
 .promotionTitle {
     font-size: 40px;
     background-color: white;
     padding: 0 10px;
}
 .productImg {
     width:70%;
     height:70%;
}
 .cellItem {
     height:500px;
     text-align: center;
     /*background:#d7d7f4;*/
     border: double;
     box-shadow: 5px 10px #8989b5;
}
 .productTitle {
     font-size:25px;
     font-weight: bold;
}


.lineWithText {
    width: 100%; 
    height: 25px; 
    border-bottom:double; 
    text-align: center;
}

.eventTable {
    width:80%;
}

#resizeColumn {
    width:20%;
}

.importantMessage {
    font-size:13px;
}

.termsnCTable {
    width:65%;
}

.brochureRegister {
    width:800px;
    height:800px;
}

.qrResize {
    width:80px;
    height:80px;
}

.tableFooter {
    width:100%;
}

.indexImageBelow {
    width:1000px;
    height:530px;
}

.imageEntryFee {
    width:321px;
    height:300px;
}

.imageRedStamp {
    width:200px;
    height:200px;
}

.hideshowInfo {
    display: none;
}

.brochure {
    width:450px;
    height:639px;
}
/*###Desktops, big landscape tablets and laptops(Large, Extra large)####*/
@media screen and (min-width: 1024px) and (max-width : 1300px){
    div.imageContent {
        width: auto;
        margin: 0px auto;
        border-radius: 8px;
    }

    .paddingContent {
        padding-left:20px;
        padding-right:20px;
    }
    .dropbtn {
        border-radius: 10px;
        width:110px;
        padding-left:13px;
        padding-right:13px;
        padding-top:13px;
        padding-bottom:13px;
        font-size: 14px;
    }

    .dropdown-content {
        left:-15px;
        text-align: center; 
        border-radius: 10px;
        min-width: 113px;
        font-size: 14px;
        width:145px;
    }

    .dropdown2-content {
        bottom:6px;
        right:115px;
        border-radius: 10px;
        min-width: 120px;
        z-index: 1;
        font-size: 14px;
    }

    .dropdown3-content {
        bottom:-28px;
        right:218px;
        border-radius: 10px;
        min-width: 120px;
        z-index: 1;
        font-size: 14px;
    }

    .dropdown-content a, .dropdown2-content a , .dropdown3-content a {
        padding: 10px 14px;
    }

    .dropdown-content a:hover, .dropdown2-content a:hover, .dropdown3-content a:hover{
        border-radius: 10px;
    }

    img.logo3 {
        width:440px;
        height:404px;
    }

    #phone, #fax {
        font-size:26px;
    }

    #class1030 {
        display:none;
    }

    .indexImageBelow {
        width:950px;
        height:503px;
    }

    .imageEntryFee {
        width:294px;
        height:275px;
    }

    .imageRedStamp {
        width:150px;
        height:150px;
    }

    .brochureRegister {
        width:700px;
        height:700px;
    }

    .hideshowInfo {
        display: none;
    }
}

/*###Tablet(medium)###*/
@media screen and (min-width : 768px) and (max-width : 1023px){
    .sponsorDekstop {
        display:none;
    }
    
    .sponsorPhone {
        display:block;
    }

    div.imageContent {
        width: auto;
        margin: 0px auto;
        border-radius: 8px;
    }

    .paddingContent {
        padding-left:20px;
        padding-right:20px;
    }

    .dropbtn {
        border-radius: 10px;
        width:105px;
        padding-left:12px;
        padding-right:12px;
        padding-top:12px;
        padding-bottom:12px;
        font-size: 12px;
    }

    .dropdown-content {
        text-align: center;
        left:-8px;
        border-radius: 10px;
        min-width: 125px;
        font-size: 12px;
    }

    .dropdown2-content {
        bottom:6px;
        right:115px;
        border-radius: 10px;
        min-width: 107px;
        z-index: 1;
        font-size: 14px;
    }
    .dropdown3-content {
        bottom:6px;
        right:115px;
        border-radius: 10px;
        min-width: 107px;
        z-index: 1;
        font-size: 14px;
    }

    .dropdown-content a, .dropdown2-content a, .dropdown3-content a {
        padding: 10px 14px;
    }

    .dropdown-content a:hover, .dropdown2-content a:hover, .dropdown3-content a:hover{
        border-radius: 10px;
    }

    img.logo3 {
        width:400px;
        height:367px;
    }

    #phone, #fax {
        font-size:26px;
    }

    #class1030 {
        display:none;
    }

    .indexImageBelow {
        width:750px;
        height:397px;
    }

    .imageEntryFee {
        width:294px;
        height:275px;
    }

    .imageRedStamp {
        width:150px;
        height:150px;
    }

    .brochureRegister {
        width:700px;
        height:700px;
    }

    footer {
        font-size:9px;
    }

    .navContact, div.navContact2 {
        text-align: center;
        font-size:16px;
    }
    div.navContact {
        display: none;
    }
    div.navContact2 {
        display: block;
    }

    .hideshowInfo {
        display: none;
    }

    iframe.unimap {
         width:320px;
         height:300px;
    }

    .contentForm{
        width: 700px;
        padding: 10px;
    }

    i.fa-bars {
        top:50px;
        left:70px;
        font-size: 40px;
    }

    .brochure {
        width:350px;
        height: 497px;
    }
}

/*### Smartphones (portrait and landscape)(small)### */
@media screen and (min-width : 0px) and (max-width : 767px){
    .hideshowInfo {
        display: block;
    }

    .loginForm {
        width: 280px;
    }

    .contentForm{
        width: 300px;
        padding: 2px;
    }

    .loginForm input[type="text"], .contentForm input[type="text"],
    .loginForm input[type="date"], .contentForm input[type="date"],
    .loginForm input[type="datetime"], .contentForm input[type="datetime"],
    .loginForm input[type="email"], .contentForm input[type="email"],
    .loginForm input[type="number"], .contentForm input[type="number"],
    .loginForm input[type="search"], .contentForm input[type="search"],
    .loginForm input[type="time"], .contentForm input[type="time"],
    .loginForm input[type="url"], .contentForm input[type="url"],
    .loginForm input[type="password"], .contentForm input[type="password"],
    .loginForm textarea, .contentForm textarea,
    .loginForm select, .contentForm select,
    .loginForm input[type="submit"], .contentForm input[type="submit"],
    .loginForm button[type="submit"], .contentForm button[type="submit"],
    .loginForm input[type="button"], .contentForm input[type="button"],
    table.sponsorType, table.contactForm,
    div.sponsorTypeAs {
        font-size:12px;
    }
    
    .loginForm legend, .contentForm legend {
        font-size:18px;
    }

    .loginForm label, .loginForm span, .contentForm label, .contentForm span {
        font-size:12px;
    }

    div.sponsorTypeAs {
        padding-left:15%;
    }

    .dropbtn {
        font-size: 12px;
        padding-left:8px;
        padding-right:8px;
        padding-top:8px;
        padding-bottom:8px;
        width:auto;
        border-radius: 12px;
    }

    .dropdown-content a {
        text-align: center;
        font-size:12px;
        padding: 8px 12px;
        text-decoration: none;
        display: block;
    }

    .dropdown-content {
        left: -19px;
        text-align: center;
        min-width: 125px;
    }

    img.logo {
        width:114px;
        height:86px;
    }
    img.logo2 {
        width:147px;
        height:86px;
    }
    img.unimap {
        width:60px;
        height:60px;
    }
    .navContact, div.navContact2 {
        font-size:16px;
    }
    div.navContact {
        display: none;
    }
    div.navContact2 {
        display: block;
    }
    
    label.phone {
        font-size:0px;
    }
    table.navBar {
        border-spacing: 5px;
    }

    div.imageContent {
        font-size:12px;
        width: 90%;
        margin: 0px;
        padding: 0px;
        border-radius: 8px;
    }

    i.fa-bars {
        top:40px;
        left:30px;
        font-size: 30px;
    }

    img.picLeftSideBar {
        width:75px;
        height:53px;
    }

    #tableInfo {
        width: 30%;
    }

    .tableInfo {
        font-size:12px;
        width:100%;
        margin-left:0; 
        margin-right:0;
    }

    #editInfo {
        font-size:12px;
    }
    
    footer {
        font-size:9px;
    }
    
    .paddingContent {
        font-size:14px;
        padding-left:20px;
        padding-right:10px;
    }
    
    #normal {
        display:none;
    }
    
    #phones {
        display:block;
    }
    
    iframe.unimap {
         width:320px;
         height:180px;
    }
    
    textarea.messageUnimap {
         width:210px;
         height:100px;
    }
    
    input.formUnimap {
         width:210px;
    }
    
    span.form {
         font-size: 12px;
    }
    
    .titleIndex {
        width:100%;
        height:100%;
    }

    .hideColumn {
        display: none;
    }

    .tableAdmin {
        font-size:12px;
    }

    .titleAdmin {
        font-size:16px;
    }

    #addMerc {
        width:50%;
    }

    #inputMerc {
        width:50%;
    }
    
    .sponsorDekstop {
        display:none;
    }
    
    .sponsorPhone {
        display:block;
    }

    .promotionTitle {
         font-size: 30px;
         background-color: white;
         padding: 0 10px;
    }

    .lineWithText {
        width: 100%; 
        height: 35px; 
        border-bottom:double; 
        text-align: center;
    }

    .tableProduct {
         border-spacing: 10px;
         width:100%;
    }

    .productTitle {
         font-size:16px;
         font-weight: bold;
    }

    .cellItem {
         height:300px;
         text-align: center;
         /*background:#d7d7f4;*/
         border: double;
         box-shadow: 4px 9px #8989b5;
    }

    .inputAddtoCart {
         font-size: 12px;
         padding-left:8px;
         padding-right:8px;
         padding-top:8px;
         padding-bottom:8px;
         width:50px;
         margin-bottom: 20px;
    }

     .btnAddtoCart, .btnUpdate, .btnEmpty {
         width:90px;
         padding-left:8px;
         padding-right:8px;
         padding-top:8px;
         padding-bottom:8px;
         font-size: 12px;
    }

    .proceedPay {
         width:120px;
         padding-left:8px;
         padding-right:8px;
         padding-top:8px;
         padding-bottom:8px;
         font-size: 12px;
    }

    img.logo3 {
        width:280px;
        height:259px;
    }

    .productImg {
         width:80%;
         height:80%;
    }

    .paymentTable
    {
        width:90%;
    }

    #tentativeTable {
         font-size: 12px;
    }

    .eventTable {
        width:95%;
    }

    .cartTable {
        width:95%;
    }

    #resizeColumn {
        width:35%;
    }

    .importantMessage {
        font-size:12px;
    }

    .termsnCTable {
        width:100%;
    }

    .brochureRegister {
        width:300px;
        height:300px;
    }

    .qrResize {
        width:60px;
        height:60px;
    }

    .fbResize {
        width:30px;
        height:30px;
    }

    .tableFooter {
        width:90%;
    }

    #phone, #fax {
        font-size:16px;
    }

    .indexImageBelow {
        width:340px;
        height:180px;
    }

    .imageEntryFee {
        width:170px;
        height:158px;
    }

    .imageRedStamp {
        width:100px;
        height:100px;
    }

    .brochure {
        width:280px;
        height:397px;
    }
}