* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
  font-size: 16px;
}

body {
  background-color: #A9927D;
  margin: 0;
}

.login, .register {
  width: 400px;
  background-color: #E9E8E5;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  margin: 100px auto;
}

.login h1, .register h1 {
  text-align: center;
  color: #0A0908;
  font-size: 24px;
  padding: 20px 0 20px 0;
  border-bottom: 1px solid #dee0e4;
}

.login .links, .register .links {
  display: flex;
  padding: 0 15px;
}

.login .links a, .register .links a {
  color: #9da3ac;
  text-decoration: none;
  display: inline-flex;
  padding: 0 10px 10px 10px;
  font-weight: 500;
}

.login .links a:hover, .register .links a:hover {
  color: #9da3ac;
}

.login .links a.active, .register .links a.active {
  border-bottom: 3px solid #5e503f;
  color: #5e503f;
}

.login form, .register form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
}

.login form label, .register form label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12%;
  height: 50px;
  background-color: #5e503f;
  color: #E9E8E5;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.login form input[type="password"], .login form input[type="text"], .login form input[type="email"], .register form input[type="password"], .register form input[type="text"], .register form input[type="email"] {
  width: 80%;
  height: 50px;
  border: 1px solid #dee0e4;
  border-left: 0;
  margin-bottom: 20px;
  padding: 0 15px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  outline: 0;
}

.login form input[type="password"]::placeholder, .login form input[type="text"]::placeholder, .login form input[type="email"]::placeholder, .register form input[type="password"]::placeholder, .register form input[type="text"]::placeholder, .register form input[type="email"]::placeholder {
  color: #8e97a3;
}

.login form input[type="password"]:focus, .login form input[type="text"]:focus, .login form input[type="email"]:focus, .register form input[type="password"]:focus, .register form input[type="text"]:focus, .register form input[type="email"]:focus {
  border: 1px solid #c2c6cd;
  border-left: 0;
}

.login form input[type="submit"], .register form input[type="submit"] {
  width: 100%;
  padding: 15px;
  margin-top: 20px;
  background-color: #5e503f;
  border: 0;
  cursor: pointer;
  font-weight: 500;
  color: #E9E8E5;
  transition: background-color 0.2s;
  border-radius: 0;
  appearance: none;
}

.login form input[type="submit"]:hover, .register form input[type="submit"]:hover {
  background-color: #84715E;
  transition: background-color 0.2s;
}

.login form #rememberme, .register form #rememberme, #forget {
  width: 100%;
  height: auto;
  padding: 5px 20px;
  background-color: transparent;
  color: #0A0908;
  justify-content: flex-start;
}

.login form #rememberme input, .register form #rememberme input {
  transform: scale(1.3);
  margin-right: 7px;
}

.login form .msg, .register form .msg {
  padding: 0 20px;
  width: 100%;
}

.login form .captcha, .register form .captcha {
  display: flex;
}

.login form .fb-btn, .login form .gl-btn, .register form .fb-btn, .register form .gl-btn {
  display: flex;
  text-decoration: none;
  position: relative;
  border-radius: 4px;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: #E9E8E5;
  font-weight: 500;
  font-size: 14px;
  width: 92%;
  margin: 15px 0 5px 0;
  padding: 15px;
  transition: background-color 0.2s;
}

.login form .fb-btn i, .login form .gl-btn i, .register form .fb-btn i, .register form .gl-btn i {
  position: absolute;
  left: 15px;
}

.login form .fb-btn:hover, .login form .gl-btn:hover, .register form .fb-btn:hover, .register form .gl-btn:hover {
  color: #E9E8E5;
  transition: background-color 0.2s;
}

.login form .fb-btn, .register form .fb-btn {
  background-color: #507CBF;
}

.login form .fb-btn:hover, .register form .fb-btn:hover {
  background-color: #426fb4;
}

.login form .gl-btn, .register form .gl-btn {
  background-color: #d6523e;
}

.login form .gl-btn:hover, .register form .gl-btn:hover {
  background-color: #cf412c;
}

.login form > a, .register form > a {
  text-decoration: none;
  color: #0A0908;
  width: 100%;
  padding: 5px 20px;
}

.login form > a:hover, .register form > a:hover {
  color: #394049;
}

.header {
  background-color: #5e503f;
  height: 60px;
  width: 100%;
}
#noti {
  background-color: #5e503f;
position: relative;
right: -5px;
color: #E9E8E5;
}
#noti:hover {
  background-color: #5e503f;
  position: relative;
  right: -5px;
  color: #E0DCD6;
  cursor: pointer;
}
#noti:active{
  background-color: #5e503f;
  position: relative;
  right: -5px;
  color: #A9927D;
  cursor: pointer;
}
#noti_panel{
  all: initial;
  position: absolute;
  right: 0%;
  z-index: 1001;
display: none;
background-color: #5e503f;
}
.dot {
  position: absolute;
  height: 5px;
  width: 5px;
  background-color: #c61c1c;
  border-radius: 50%;
  display: block;
}
#undot{
  top: -3px;
  right: -3px;
}
#ann_dot{
  top: -3px;
  right: 14px;
}
.prevent-select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
.header .wrapper {
  display: flex;
  position: relative;
  margin: 0 auto;
  width: 1000px;
  height: 100%;
}

.header .wrapper h1, .header .wrapper a, .header .wrapper label {
  display: inline-flex;
  align-items: center;
}

.header .wrapper h1 {
  flex: 1;
  font-size: 20px;
  padding: 0;
  margin: 0;
  color: #E9E8E5;
  font-weight: normal;
  
}

.header .wrapper label, .header .wrapper input[type="checkbox"] {
  display: none;
}

.header .wrapper label {
  justify-content: center;
  width: 60px;
  border-left: 1px solid #272f3b;
  cursor: pointer;
}

.header .wrapper label i {
  color: #E9E8E5;
}

.header .wrapper label:hover i, .header .wrapper label:active i {
  color: #E0DCD6;
}

.header .wrapper .menu {
  display: flex;
  align-items: center;
}

.header .wrapper .menu a {
  padding: 0 15px;
  text-decoration: none;
  color: #E9E8E5;
  font-weight: 500;
  font-size: 16px;
}

.header .wrapper .menu a i {
  font-size: 14px;
  padding: 2px 8px 0 0;
}

.header .wrapper .menu a:hover {
  color: #E0DCD6;
}

body.loggedin {
  background-color: #A9927D;
}

.content {
  width: 1000px;
  margin: 0 auto;
}

.content h2 {
  margin: 0;
  padding: 25px 0;
  font-size: 20px;
  border-bottom: 1px solid #e0e0e3;
  color: #22333B;
}

.content .block {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  margin: 25px 0;
  padding: 25px;
  background-color: #E9E8E5;
}

.content .block p {
  padding: 5px;
  margin: 0 0 10px 0;
  color: #0A0908;
}

.content.profile form label:not(.payment-methods label) {
  display: block;
  padding: 15px 0 10px 0;
  font-weight: 500;
  font-size: 14px;
  color: #4d4d4d;
}

.content.profile form input[type="text"], .content.profile form input[type="password"], .content.profile form input[type="email"], .content.profile form input[inputmode="numeric"], .content.profile form input[type="number"], .content.profile form input[type="tel"] {
  padding: 10px;
  width: 250px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.content.profile .profile-detail {
  padding: 5px;
}

.content.profile .profile-detail strong {
  display: inline-block;
  color: #777;
  min-width: 120px;
  font-size: 16px;
}

.content.profile .profile-detail i {
  width: 28px;
  color: #aaabad;
}

.content.profile .profile-btn {
  display: inline-block;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  color: #E9E8E5;
  background-color: #5e503f;
  margin: 20px 5px 0 0;
  padding: 10px 15px;
  border-radius: 4px;
  appearance: none;
  font-size: 14px;
  font-weight: 500;
}


.content.profile .profile-btn:hover {
  background-color: #A9927D;
}
.hpclick{
  font-size: 30px;
}
.logoimg{
  padding: 15px;
}
.gotohp{
  cursor: pointer;
  width: 100%;
}
INPUT[type=checkbox]:focus
{
    outline: 1px solid rgba(0, 0, 0, 0.2);
}

INPUT[type=checkbox]
{
    background-color: #DDD;
    border-radius: 2px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 17px;
    height: 17px;
    cursor: pointer;
    position: relative;
    top: 5px;
}

INPUT[type=checkbox]:checked
{
    background-color: #5E503F;
    background: #5E503F url("data:image/gif;base64,R0lGODlhCwAKAIABAP////3cnSH5BAEKAAEALAAAAAALAAoAAAIUjH+AC73WHIsw0UCjglraO20PNhYAOw==") 3px 3px no-repeat;
}

select {
  padding: 15px 5px;
  margin-bottom: 25px;
  border: 0;
  border-bottom: 1px solid #dedfe1;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
  font-size: 16px;
}
select:hover, select:active {
  border-bottom: 1px solid #b5b9bd;
}

.regrole {
  width: 80%;
  padding: 15px 5px;
  margin-bottom: 25px;
  border: 0;
  border-bottom: 1px solid #dedfe1;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
  font-size: 16px;
}
.regrole:hover, .regrole:active {
  border-bottom: 1px solid #b5b9bd;
}
#google_translate_element{
  position: absolute;
  top: 65px;
  right: 1%;
  width:150px;
  z-index: 100;

}
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}
textarea {
  resize: vertical;
  min-width: 10%; 
  min-height: 20%;
  max-width: 100%; 
  max-height: 50%;
  width: 100%;
}

#plans_info {
text-decoration: none;
color:#5e503f;

}

#plans_info:hover {
  color:#A9927D;
  }
  .tooltip {
    position: relative;
    display: inline-block;
    color:#5e503f;
  }
  
  .tooltip .tooltiptext {
    display: none;
    width: 200px;
    background-color: #5e503f;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 5;
    top: -5px;
    left: 110%;
  }
  
  .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 100%;
    margin-top: -2px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #5e503f transparent transparent;
  }
  .tooltip:hover {
    color:#A9927D;
  }
  .tooltip:hover .tooltiptext {
    display: block;
  }

.payment-methods {
    display: flex;
    flex-flow: wrap;
    width: 100%;
    /* justify-content: space-between; */
  }
  
 .payment-methods label {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #5e503f;
    border-radius: 5px;
    height: 60px;
    width: 159px;
    margin: 10px;
    font-weight: 500;
    color: #5e503f;
    padding: 0;
    cursor: pointer;
  }
  
.payment-methods label .fa-stripe {
    color: #6671E4;
  }
  
.payment-methods label:nth-child(2), .checkout .payment-methods label:nth-child(8) {
    margin-left: 0;
  }
  
.payment-methods label:nth-child(3n) {
    margin-right: 0;
  }
 
.payment-methods label:hover {
    border: 1px solid #A9927D;
  }
  
.payment-methods input {
    position: absolute;
    top: -9999px;
    left: -9999px;
    visibility: hidden;
  }
  
.payment-methods input:checked + label {
    border: 2px solid #7ed1a1;
  }
.checkout .summary {
    border-top: 1px solid #EEEEEE;
    padding: 23px 0;
  }
  
.checkout .summary div {
    display: flex;
    justify-content: space-between;
    padding: 10px 23px;
  }
  
.checkout .summary div span {
    font-size: 14px;
    font-weight: 500;
  }
  
.checkout .summary .discount span {
    color: #de0000;
  }
form label .required {
    font-style: normal;
    color: #e26060;
  }
form .multiselect {
    position: relative;
    display: inline-flex;
    flex-flow: wrap;
    border-bottom: 1px solid #dedfe1;
    padding-bottom: 10px;
    margin: 15px 0 25px 0;
    margin-bottom: 25px;
    width:95%;
  }
  
form .multiselect > .item {
    display: inline-flex;
    border: 1px solid #dedfe1;
    padding: 0 10px;
    height: 40px;
    margin: 0 5px 5px 0;
    font-size: 14px;
    justify-content: center;
    align-items: center;
  }
  
form .multiselect > .item .remove {
    font-style: normal;
    cursor: pointer;
    font-size: 19px;
    margin-right: 3px;
    margin-top: -2px;
    color: #b5b9bd;
  }
  
form .multiselect > .item .remove:hover {
    color: #9aa0a5;
  }
  
form .multiselect input {
    height: 40px;
    width: 80px;
    flex-grow: 1;
    padding: 0;
    margin: 0;
    outline: 0;
    border: 0;
  }
  
form .multiselect input:hover {
    border: 0;
  }
  
form .multiselect .list {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    flex-flow: column;
    background-color: #fff;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
    max-height: 100px;
    overflow-y: auto;
    z-index: 10;
  }
  
form .multiselect .list span {
    display: flex;
    padding: 5px 7px;
    cursor: pointer;
  }
  
form .multiselect .list span:hover {
    background-color: #f3f4f4;
  }
  
form .multiselect:hover, main .form .multiselect:active {
    border-bottom: 1px solid #b5b9bd;
  }

#draggy_answers, #boxOnly {
  position: absolute;
  border: 1px solid black;
  user-select: none;
  z-index: 20;
  left: 45%;
}
#boxOnly{left: 300px;}
#draggy_answers .header {margin: 0;text-align:center;  padding: 6px;  font-weight: bold; 
  color: rgb(233, 230, 226);
}
#draggy_answers .cont {background-color: #E9E8E5;
	z-index: 20;
}
p.header:active, #boxOnly:active {cursor:move;}
#draggy_answers #hide_box {
	cursor:pointer;
	z-index: 21;
	text-decoration: none;
	color: rgb(233, 230, 226);
}
.cm-editor { border: 1px solid  #5e503f}
.cm-editor.cm-focused { border: 2px solid rgb(233, 230, 226) }
.red_back { background-color: #F5DDDD }
.remove_deco { background-color: transparent }
.msg.error {
  background-color: #f3c3c3;
  border-left: 4px solid #a75151;
  color: #a75151;
}

.msg.error i {
  color: #a75151;
}
input[type='radio']:after {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  top: -2px;
  left: -1px;
  position: relative;
  background-color: #d1d3d1;
  content: '';
  display: inline-block;
  visibility: visible;
  border: 2px solid white;
}

input[type='radio']:checked:after {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  top: -2px;
  left: -1px;
  position: relative;
  background-color: #5e503f;
  content: '';
  display: inline-block;
  visibility: visible;
  border: 2px solid white;
}
/*dont write after this */

  @media screen and (max-width: 400px) {
    .login, .register {
      width: 95%;
    }
    select {
      width: 100%;
    }
  }
  
  @media screen and (max-width: 1000px) {
    .header .wrapper {
      width: 100%;
    }
    .header .wrapper h1 {
      font-size: 18px;
      padding: 10px;
    }
    .header .wrapper label {
      display: inline-flex;
    }
    .header .wrapper .menu {
      display: none;
      position: absolute;
      top: 100%;
      width: 100%;
      flex-flow: column;
      background-color: #252d38;
      justify-items: flex-start;
      align-items: flex-start;
      z-index: 999;
    }
    .header .wrapper input[type="checkbox"]:checked ~ .menu {
      display: flex;
    }
    .header .wrapper input[type="checkbox"]:checked ~ .menu a {
      width: 100%;
      padding: 15px 17px;
      border-bottom: 1px solid #1f252e;
    }
    .gotohp, .hpclick {
      width: 50%;
    }
    .content {
      padding: 5px 10px;
      width: 100%;
    }
    .content form input[type="text"], .content form input[type="password"], .content form input[type="email"], .content form input[inputmode="numeric"], .content form input[type="number"], .content.profile form input[type="tel"] {
      width: 100%;
      max-width: 100%;
    }
    .profile-detail strong {
      width: 100%;
    }
    select {
      width: 100%;
    }
    #pland{
      width: 80%;
    }
    #pland, #catd{
      width: 80%;
    }
.checkout .shipping-details .payment-methods, .myaccount .shipping-details .payment-methods {
      flex-flow: column;
    }
.checkout .shipping-details .payment-methods label, .myaccount .shipping-details .payment-methods label {
      margin: 0 0 10px 0;
    }
    #noti {
    position: absolute;
    top: -35px;
    right: 60px;
    color: #E9E8E5;
    z-index: 30;
    width: 30px;
    height: 30px;
    }
    #noti:hover {
      background-color: #5e503f;
      position: absolute;
      top: -35px;
      right: 60px;
      color: #E0DCD6;
      z-index: 30;
    width: 30px;
    height: 30px;
    cursor: pointer;
    }
    #noti:active{
      background-color: #5e503f;
      position: absolute;
      top: -35px;
      right: 60px;
      color: #A9927D;
      z-index: 30;
    width: 30px;
    height: 30px;
    cursor: pointer;
    }
    #noti_panel{
      position: absolute;
      right: -120%;
      top: 25px;
      z-index: 1001;
    display: none;
    border: "1px solid #272f3b",
    }
.dot {
  position: absolute;
  height: 5px;
  width: 5px;
  background-color: #c61c1c;
  border-radius: 50%;
  display: block;
}
#undot{
  top: -3px;
  right: 10px;
}
#ann_dot{
  top: -3px;
  right: 26px;
}
.hpclick{
  font-size: 110%;
}
  }
