* {
    margin: 0;
    padding: 0;
}

body {
    text-align: center;
}

body,input,textarea {
    color: #484848;
    font-family: apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
}

input[type=text], input[type=number], textarea {
    padding: 5px;
    border: 1px solid #008fba;
}
input[type=number] {
    text-align: right;
}

p {
    margin: 20px 0;
    text-align: left;
}

h2 {
    margin: 30px 0 5px 0;
    font-size: 22px;
    color: #008fba;
}

.right { text-align: right; }
.left { text-align: left; }
.center { text-align: center; }

.button {
    display: inline-block;
    white-space: nowrap;
    background-color: #63ae60;
    color: #ffffff;
    border-radius: 3px;
    font-size: 14px;
    padding: 3px 15px;
    line-height: 24px;
    cursor: pointer;
    margin: 0px 5px;
}

.button.disabled {
    background-color: #8f8f8f;
    cursor: default;
}


.color-blue {
    color: #008fba;
}

#wrapper-header {
    width: 1200px;
    margin: 0px auto;
    display: table;
}

#wrapper-header .logo, #wrapper-header .title, #wrapper-header .contact {
    display: table-cell;
    vertical-align: middle;
    padding: 20px 0px;
}

#wrapper-header .logo {
    text-align: left;
}
#wrapper-header .title {
    padding: 0px 10px;
    font-size: 26px;
    font-weight: bold;
}
#wrapper-header .contact {
    text-align: right;
    font-size: 16px;
}

#wrapper-menu {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    background-color: #008fba;
    box-shadow: 0px 10px 40px rgba(255,255,255,0.5);
    z-index: 10;
    top: 0px;
}

#menu-items {
    display: table;
    width: 1200px;
    margin: 0px auto;
    line-height: 42px;
    font-size: 18px;
    font-weight: bold;
}

#menu-items .item {
    display: table-cell;
    padding: 0px 15px;
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
    text-shadow: 0px 1px 1px rgba(0,0,0,0.5);
    transition: 0.3s;
}
#menu-items .item.active,
#menu-items .item:hover {
    background-color: #00afda;
}
#menu-cart-icon {
    margin-bottom: -9px;
}

#menu-cart-items-cnt {
    transition: 0.3s;
}

#wrapper-content {
    width: 1200px;
    min-height: 700px;
    padding: 20px 50px; 
    margin: 0px auto;
    text-align: left;
}

#wrapper-footer {
    width: 1200px;
    margin: 100px auto 0 auto;
    display: table;
}

#wrapper-footer .logo, #wrapper-footer .title, #wrapper-footer .contact {
    display: table-cell;
    vertical-align: middle;
    padding: 20px 0px;
}

#wrapper-footer .logo {
    text-align: left;
}
#wrapper-footer .title {
    padding: 0px 10px;
    font-size: 26px;
    font-weight: bold;
}
#wrapper-footer .contact {
    text-align: right;
    font-size: 16px;
}


#feedback {
    position: fixed;
    top: 30%;
    left: -314px;
    width: 290px;
    height: 240px;
    background: #fff;
    border: 2px solid #008fba;
    padding: 10px;
    text-align: left;
    box-shadow: 0 0 70px 30px #fff;
}
#feedback-email {
    width: 280px;
    padding: 3px;
    border: 1px solid #008fba;
    margin-bottom: 10px;
}
#feedback-text {
    width: 280px;
    height: 150px;
    padding: 3px;
    resize: none;
    border: 1px solid #008fba;
    margin-bottom: 10px;
}
#feedback-button {
    margin-left: 90px;
}
#feedback-handle {
    line-height: 30px;
    width: 220px;
    transform: rotate(-90deg);
    margin-left: 205px;
    margin-top: -125px;
    background: #008fba;
    color: #fff;
    text-align: center;
    border-radius: 0 0 30px 30px;
    cursor: pointer;
}


#cart-widget {
    position: fixed;
    top: 30%;
    right: 10px;
    width: 150px;
    height: 50px;
    background: #fff;
    padding: 10px;
    text-align: center;
    box-shadow: 0 0 30px 0px #008fba;
    border-radius: 5px;
    cursor: pointer;
}

div.submenu {
    display: inline-block;
    float: left;
    width: auto;
}

div.submenu a.submenu-item {
    display: block;
    width: 100%;
    //line-height: 20px;
    padding: 10px 10px;
    font-size: 16px;
    font-weight: bold;
    background-color: #008fba;
    color: #fff;
    cursor: pointer;
    text-shadow: 0px 1px 1px rgba(0,0,0,0.5);
    transition: 0.2s;
}

div.submenu a.submenu-item:hover, div.submenu a.submenu-item.active {
    background-color: #00afda;
}