html {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

html, body {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-size: 14px;
    background-color: #ffffff;

    height: 100%;
    overflow: hidden;
    min-width: 375px;
    width: 100vw;
    overflow-y: auto;
}

.content {
    margin: 0 auto;
    max-width: 1000px;
    padding: 0 30px;
}

/* screen 1 */
#screen-1 {
    position: relative;
    display: block;
    padding-top: 20px;
    background-color: #114a8b;
    z-index: 2;
}

#screen-1 .logo {
    position: relative;
    display: block;
    background-image: url("../img/screen-1/logo-white.svg");
    height: 70px;
    background-position: center;
    background-size: contain;
    z-index: 2;
    background-repeat: no-repeat;
}
@media (max-width: 550px) {
    #screen-1 .logo {
        height: 50px;
    }
}

#screen-1 .data {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1000px) {
    #screen-1 .data {
        display: block;
    }
}

#screen-1 .data .right {
    position: relative;
    display: inline-block;
    margin-left: 50px;
}
@media (max-width: 1000px) {
    #screen-1 .data .right {
        text-align: right;
        display: block;
        margin-left: 0;
    }
}
@media (max-width: 550px) {
    #screen-1 .data .right {
        text-align: center;
    }
}

#screen-1 .data .right img {
    position: relative;
    display: block;
    margin-bottom: -70px;
    filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.3));
}
@media (max-width: 1000px) {
    #screen-1 .data .right img {
        max-width: 300px;
        margin-top: -90px;
        display: inline-block;
        vertical-align: top;
    }
}
@media (max-width: 550px) {
    #screen-1 .data .right img {
        margin-top: 0;
    }
}

#screen-1 .data .left {
    position: relative;
    display: inline-block;
    color: #ffffff;
    margin: 50px 0;
}
@media (max-width: 1000px) {
    #screen-1 .data .left {
        margin-bottom: 50px;
    }
}
@media (max-width: 550px) {
    #screen-1 .data .left {
        text-align: center;
    }
}

#screen-1 .data .left h1 {
    color: #ffffff;
    font-weight: bold;
    font-size: 42px;
}

#screen-1 .data .left p {
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
}

#screen-1 .data .left .btn {
    margin-top: 20px;
}

#screen-1 .data .left .btn .uk-button-primary {
    border: none;
    background-color: #ffce36;
    color: #114a8b;
    text-transform: uppercase;
    font-weight: bold;
    padding: 15px 30px;
    font-size: 17px;
    border-radius: 10px;
    /*box-shadow: 0px 4px 5px -5px #000000;*/
    cursor: pointer;
    animation: pulse 6s infinite;
    box-shadow: 0 0 0 rgba(255, 206, 54, 0.7);
    transition: 0.3s;
    display: inline-block;
}
#screen-1 .data .left .btn .uk-button-primary:hover {
    transform: scale(1.1);
    text-decoration: none;
}
#screen-1 .data .left .btn .uk-button-primary:active {
    box-shadow: 0px 0px 5px -5px #000000;
    background-color: #ecba20;
    transform: scale(1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 206, 54, 0.7);
  }
  20% {
    box-shadow: 0 0 0 15px rgba(255, 206, 54, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 206, 54, 0);
  }
}
/* end screen 1 */

/* screen 2 */
#screen-2 {
    z-index: 1;
    background-color: #efefef;
    padding: 25px 0;
}

#screen-2 .list {
    position: relative;
    display: flex;
    flex-direction: row;
    align-content: stretch;
    justify-content: space-evenly;
    margin-top: 65px;
    text-align: center;
    color: #114a8b;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 50px;
    align-items: stretch;
}
@media (max-width: 1000px) {
    #screen-2 .list {
        margin-top: 100px;
    }
}
@media (max-width: 768px) {
    #screen-2 .list {
        flex-wrap: wrap;
    }
}

#screen-2 .list .item {
    margin: 0 15px;
    width: calc(25% - 30px);
}
@media (max-width: 768px) {
    #screen-2 .list .item {
        width: calc(33.3333% - 30px);
        margin: 30px 15px;
    }
}
@media (max-width: 550px) {
    #screen-2 .list .item {
        width: calc(50% - 30px);
    }
}

#screen-2 .list .item .icon {
    height: 100px;
    display: flex;
    align-content: flex-end;
    justify-content: center;
    align-items: flex-end;
}

#screen-2 .list .item .icon img {
    max-width: 100%;
    max-height: 100%;
}

#screen-2 .list .item .title {
    margin-top: 15px;
    line-height: 19px;
    color: #000000;
}
/* end screen 2 */

/* screen 3 */
#screen-3 {
    margin: 50px 0;
    margin-top: 0;
}
/* end screen 3 */

/* screen 4 */
#screen-4 {
    margin: 50px 0;
    color: #000000;
}

#screen-4 h2 {
    color: #000000;
}

#screen-4 .content > div {
    color: #000000;
}
@media (max-width: 600px) {
    #screen-4 .content > div {
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 15px;
        display: block;
    }
    
    #screen-4 .content > div .uk-leader {
        display: inline-block;
        padding-left: 15px;
        width: inherit;
    }
    
    #screen-4 .content > div > div:nth-child(2) {
        display: block;
        margin-top: 0;
        vertical-align: top;
    }
}
/* end screen 4 */


/* screen 5 */
#screen-5 {
    margin: 50px 0;
    background-color: #efefef;
    padding: 50px 0;
}

#screen-5 h2 {
    color: #000000;
}

#screen-5 .list {
    position: relative;
    display: flex;
    flex-direction: row;
    align-content: stretch;
    justify-content: space-evenly;
    margin-top: 65px;
    text-align: center;
    color: #114a8b;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 50px;
    align-items: stretch;
}
@media (max-width: 768px) {
    #screen-5 .list {
        margin-bottom: 0;
    }
}

#screen-5 .list .item {
    margin: 0 15px;
    width: calc(25% - 30px);
}
@media (max-width: 768px) {
    #screen-5 .list {
        flex-wrap: wrap;
    }
    
    #screen-5 .list .item {
        width: calc(50% - 30px);
        margin-bottom: 50px;
    }
}

#screen-5 .list .item .icon {
    height: 100px;
    display: flex;
    align-content: flex-end;
    justify-content: center;
    align-items: flex-end;
}

#screen-5 .list .item .icon img {
    max-width: 100%;
    max-height: 100%;
}

#screen-5 .list .item .title {
    margin-top: 15px;
    line-height: 19px;
    color: #000000;
}
/* end screen 5 */

/* screen 6 */
#screen-6 {
    margin: 50px 0;
}

#screen-6 h2 {
    color: #000000;
}

#screen-6 .uk-card {
    background-color: #114a8b;
    color: #ffffff;
    border-radius: 12px;
}

#screen-6 .uk-card-body {
    padding: 25px;
}

#screen-6 .uk-card-body .header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: center;
}

#screen-6 .uk-card-body .header .avatar {
    position: relative;
    display: inline-block;
    width: 75px;
}

#screen-6 .uk-card-body .header .avatar img {
    border-radius: 10px;
    box-shadow: 0px 3px 5px -5px #000000;
}

#screen-6 .uk-card-body .header .description {
    position: relative;
    display: inline-block;
    width: calc(100% - 90px);
    margin-left: 15px;
}

#screen-6 .uk-card-body .header .description .name {
    font-size: 16px;
    font-weight: bold;
}

#screen-6 .uk-card-body .header .description .city {
    font-size: 12px;
    font-style: italic;
    font-weight: normal;
}

#screen-6 .uk-card-body .header .description .stars {
    color: #ffce36;
    letter-spacing: 2px;
}

#screen-6 .uk-card-body .review {
    font-size: 14px;
    text-align: left;
    margin-top: 15px;
}
/* end screen 6 */

/* screen 7 */
#screen-7 {
    background-color: #efefef;
    padding: 50px 0;
    margin: 50px 0;
}

#screen-7 .list {
    position: relative;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 900px) {
    #screen-7 .list {
        flex-wrap: wrap;
    }
}

#screen-7 .list .item {
    position: relative;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}
@media (max-width: 900px) {
    #screen-7 .list .item {
        width: 50%;
    }
    
    #screen-7 .list .item:last-child {
        margin-top: 30px;
    }
}
@media (max-width: 600px) {
    #screen-7 .list .item {
        width: 100%;
        margin-bottom: 30px;
        justify-content: center;
    }
    
    #screen-7 .list .item:last-child {
        margin-top: 0;
        margin-bottom: 0;
    }
}

#screen-7 .list .item .icon {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

#screen-7 .list .item .title {
    position: relative;
    display: inline-block;
    width: calc(100% - 65px);
    color: #000000;
    font-weight: bold;
    font-size: 17px;
    line-height: 20px;
}

@media (max-width: 600px) {
    #screen-7 .list .item .title {
        width: auto;
    }
}
/* end screen 7 */

/* screen 8 */
#screen-8 {
    margin: 50px 0;
}

#screen-8 h3 {
    color: #000000;
}

#screen-8 ul {
    margin: 0;
    padding: 0;
    color: #000000;
    font-size: 16px;
}

#screen-8 ul li {
    display: block;
    margin-bottom: 5px;
}

#screen-8 ul li span {
    font-size: 20px;
    color: #318b11;
    vertical-align: middle;
    margin-right: 5px;
}

#screen-8 .columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: row;
}
@media (max-width: 700px) {
    #screen-8 .columns {
        flex-direction: column;
    }
}

#screen-8 .columns .column:last-child {
    margin-left: 15px;
}
@media (max-width: 700px) {
    #screen-8 .columns .column:last-child {
        margin-left: 0px;
        margin-top: 50px;
    }
}

#screen-8 a {
    color: #114a8b;
}
/* end screen 8 */

/* screen 9 */
#screen-9 {
    background-color: #114a8b;
    color: #ffffff;
    padding: 25px 0;
}

#screen-9 ul {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
    font-size: 15px;
    font-weight: normal;
}
@media (max-width: 600px) {
    #screen-9 ul {
        justify-content: center;
    }
}

#screen-9 ul li {
    position: relative;
    display: inline-block;
}
@media (max-width: 600px) {
    #screen-9 ul li {
        margin-bottom: 5px;
    }
    
    #screen-9 ul li:last-child {
        margin-bottom: 0;
    }
}
/* end screen 9 */

#fixed-buy-btn {
    border: none;
    background-color: #ffce36;
    color: #114a8b;
    text-transform: uppercase;
    font-weight: bold;
    padding: 13px 20px;
    font-size: 17px;
    border-radius: 10px;
    cursor: pointer;
    animation: pulse 6s infinite;
    box-shadow: 0 0 0 rgba(255, 206, 54, 0.7);
    transition: 0.3s;
    position: fixed;
    top: 15px;
    z-index: 999;
    right: -165px;
    padding-left: 20px;
}
@media (max-width: 1200px) {
    #fixed-buy-btn {
        top: -75px;
        bottom: inherit;
        right: calc(50% - 68px);
    }
}
#fixed-buy-btn:hover {
    transform: scale(1.1);
    text-decoration: none;
}
#fixed-buy-btn:active {
    box-shadow: 0px 0px 5px -5px #000000;
    background-color: #ecba20;
    transform: scale(1);
}

#fixed-buy-btn.active {
    right: 15px;
}
@media (max-width: 1200px) {
    #fixed-buy-btn.active {
        top: 15px;
        right: calc(50% - 68px);
    }
}

#fixed-buy-btn span {
    height: 20px;
    width: 20px;
    display: inline-block;
    vertical-align: top;
    margin-right: 7px;
    float: left;
}

#screen-10 {
    background-color: #ffffff;
    margin-bottom: 0;
    margin-top: 0;
    padding: 50px 0;
    z-index: 1;
}
@media (max-width: 550px) {
    #screen-10 {
        margin-top: 50px;
    }
}

#screen-10 h2 {
    color: #000000;
}


#screen-10 #buy-form .uk-form-label {
    font-weight: bold;
    color: #000000;
    font-size: 16px;
}

#screen-10 #buy-form .uk-form-label sup {
    color: red;
}

#screen-10 #buy-form .paint-weight ul {
    margin: 0;
    padding: 0;
}

#screen-10 #buy-form .paint-weight ul li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    border: 1px solid #000;
    line-height: 35px;
    width: 70px;
    text-align: center;
    color: #000000;
    font-size: 14px;
    border-radius: 10px;
    margin-right: 10px;
    box-shadow: 0px 3px 5px -4px #000000;
    background-color: #ffffff;
    transition: 0.3s;
    cursor: pointer;
}
#screen-10 #buy-form .paint-weight ul li.active {
    background-color: #114a8b;
    border-color: #103b6d;
    color: #ffffff;
    font-weight: bold;
    cursor: default;
    box-shadow: none;
}
#screen-10 #buy-form .paint-weight ul li.disabled {
    cursor: default;
    box-shadow: none;
    background-color: #efefef;
    color: #919191;
    border-color: #d1d1d1;
}

#screen-10 #buy-form .paint-color ul {
    margin: 0;
    padding: 0;
}

#screen-10 #buy-form .paint-color ul li {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 25px;
    background-color: #ffffff;
    border-radius: 50%;
    border: 1px solid #d1d1d1;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 5px;
    margin-right: 7px;
    box-shadow: 0px 2px 4px -4px #000000;
}

#screen-10 #buy-form .paint-color ul li.active {
    cursor: default;
    box-shadow: none;
    border-color: #000be0;
}
#screen-10 #buy-form .paint-color ul li:after {
    content: '✔';
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    line-height: 26px;
    text-align: center;
    color: #114a8b;
    font-size: 14px;
    display: none;
}
#screen-10 #buy-form .paint-color ul li.active:after {
    display: block;
}

#screen-10 #buy-form .paint-color ul li.yellow {
    background-color: #ffe52d;
}
#screen-10 #buy-form .paint-color ul li.light-grey {
    background-color: #d9d9d9;
}
#screen-10 #buy-form .paint-color ul li.grey {
    background-color: #afafaf;
}
#screen-10 #buy-form .paint-color ul li.grey.active:after {
    color: #ffffff;
}
#screen-10 #buy-form .paint-color ul li.black {
    background-color: #000000;
}
#screen-10 #buy-form .paint-color ul li.black.active:after {
    color: #ffffff;
}
#screen-10 #buy-form .paint-color ul li.light-blue {
    background-color: #00beff;
}
#screen-10 #buy-form .paint-color ul li.light-blue.active:after {
    color: #ffffff;
}
#screen-10 #buy-form .paint-color ul li.blue {
    background-color: #009dd3;
}
#screen-10 #buy-form .paint-color ul li.blue.active:after {
    color: #ffffff;
}
#screen-10 #buy-form .paint-color ul li.dark-blue {
    background-color: #0021e0;
}
#screen-10 #buy-form .paint-color ul li.dark-blue.active:after {
    color: #ffffff;
}
#screen-10 #buy-form .paint-color ul li.red {
    background-color: #d00000;
}
#screen-10 #buy-form .paint-color ul li.red.active:after {
    color: #ffffff;
}
#screen-10 #buy-form .paint-color ul li.salat {
    background-color: #00e400;
}
#screen-10 #buy-form .paint-color ul li.light-green {
    background-color: #00a300;
}
#screen-10 #buy-form .paint-color ul li.light-green.active:after {
    color: #ffffff;
}

#screen-10 #buy-form .paint-color ul li.active {
    cursor: default;
    box-shadow: none;
    border-color: #000be0;
}
#screen-10 #buy-form .paint-color ul li:after {
    content: '✔';
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    line-height: 26px;
    text-align: center;
    color: #114a8b;
    font-size: 14px;
    display: none;
}
#screen-10 #buy-form .paint-color ul li.active:after {
    display: block;
}

#screen-10 #buy-form .paint-color ul li.disabled {
    cursor: default;
    box-shadow: none;
    opacity: 0.3;
}

#screen-10 #buy-form input {
    border-radius: 5px;
    color: #000000;
}
#screen-10 #buy-form input:focus {
    border-color: #114a8b;
}

#screen-10 #buy-form button[type=submit] {
    border: none;
    background-color: #ffce36;
    text-transform: uppercase;
    font-weight: bold;
    padding: 13px 20px;
    font-size: 17px;
    border-radius: 10px;
    cursor: pointer;
    animation: pulse 6s infinite;
    box-shadow: 0 0 0 rgba(255, 206, 54, 0.7);
    transition: 0.3s;
    position: relative;
    padding-left: 20px;
    display: inline-block;
    color: #000000;
}
#screen-10 #buy-form button[type=submit]:hover {
    transform: scale(1.1);
    text-decoration: none;
}
#screen-10 #buy-form button[type=submit]:active {
    box-shadow: 0px 0px 5px -5px #000000;
    background-color: #ecba20;
    transform: scale(1);
}
#screen-10 #buy-form button[type=submit]:disabled {
    box-shadow: none !important;
    background-color: #e5e5e5;
    color: #ababab;
}
#screen-10 #buy-form button[type=submit]:disabled:hover {
    transform: scale(1) !important;
}

#screen-10 #buy-form .description {
    color: #959595;
    margin-top: 5px;
}

@media (max-width: 550px) {
    #screen-10 #buy-form .submit-block {
        text-align: center !important;
    }
}

#screen-10 #buy-form .amount-block .uk-form-label {
    font-size: 20px;
}

#screen-10 #buy-form .amount-block .amount {
    color: #000000;
    font-size: 14px;
}

#screen-10 #buy-form .amount-block .amount span {
    font-weight: bold;
    font-size: 24px;
}
