.container * {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.container {
    direction: rtl;
    width: 530px;
    max-width: 95%;
    margin-top: 10px;
    margin-bottom: 10px;
    -webkit-box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, .3);
    box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, .3);
}

.container h1 {
    background: #06AFAC;
    color: white;
    text-align: center;
    margin: 0;
    font-family: 'Alef', serif;
    font-size: large;
}

.container .main {
    position: relative;
    background: #E5E5E5;
    padding: 18px 18px 18px 18px;
    min-height: 100px;
}

.container .main li label {
    display: block;
    background: white;
    margin-top: 5px;
    font-weight: 700;
    font-size: medium;
    line-height: 25px;
    position: relative;
    border: 1px solid #DCDCDC;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    padding: 8px 18px 8px 18px;
    vertical-align: middle;
    cursor: pointer;
}

.container .main form input {
    width: 100%;
    height: 40px;
    background: #02A15E;
    margin-top: 5px;
    font-weight: 700;
    font-size: medium;
    border: 1px solid #98ced1;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    color: white;
    vertical-align: middle;
    padding: 10px 18px 10px 18px;
}

.container .main .bought {
    text-decoration: line-through;
    color: #acb5b5;
}

.container .main .not-bought ul {
    margin-bottom: 30px;
}

.container .footer {
    background: #06AFAC;
    width: 100%;
    padding: 20px;
    text-align: center;
}

.container .footer button {
    background: #808080;
}

.container .footer button:hover {
    background: #A9A9A9;

}

input[type=checkbox] {
    display: none;
}

/* Placeholder color change */
input::-webkit-input-placeholder {
   color: white;
}

input::-moz-placeholder {
   color: white;
}

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder {
    color: transparent;
}
