:root {
    --body-text: #1C2B42;
    --gray: #AFAFAF;
    --gray-dark: #858585;      
    --green: #1FB5AD;
  }

html {
    font-size: 1em;
    line-height: 1.4;  
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

 ::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
  }
  
  ::selection {
    background: #b3d4fc;
    text-shadow: none;
  }
  
  /*
   * A better looking default horizontal rule
   */
  
  hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
  }
  
  /*
   * Remove the gap between audio, canvas, iframes,
   * images, videos and the bottom of their containers:
   * https://github.com/h5bp/html5-boilerplate/issues/440
   */
  
  audio,
  canvas,
  iframe,
  img,
  svg,
  video {
    vertical-align: middle;
  }
  
  /*
   * Remove default fieldset styles.
   */
  
  fieldset {
    border: 0;
    margin: 0;
    padding: 0;
  }
  
  /*
   * Allow only vertical resizing of textareas.
   */
  
  textarea {
    resize: vertical;
  }
  
  h1, h2, h3, h4, h5, h6 { 
    margin: 0; 
    font-weight: 700; 
  }
  p {
   margin: 0;
  }
  dl, ol, ul {
   padding: 0;
   margin: 0;
   list-style: none;
  }
  ol {
   list-style-type: none;
   counter-reset: item;
   margin: 0;
   padding: 0;
  }
  ol > li {
   display: table;
   counter-increment: item;
  }
  ol > li:before {
   content: counters(item, ".") ". ";
   display: table-cell;
   width: 23px;
   text-align: left;
  }
  ol ol > li:before {
   width: 37px;
  }
  ol ol, ol ul, ul ol, ul ul {
   margin-bottom: 0;
  }
  a { 
   text-decoration: none; 
   font-weight: 400;
  }
  a:visited,
  a:hover { 
   text-decoration: underline;
}

html,
body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "slnt" 0;
    color: var(--body-text);
}
.gray {
    color: var(--gray);
}
.gray-dark {
    color: var(--gray-dark);
}
.text-green {
    color: var(--green);
}
.link-back i {
    margin-right: 5px;
}

.title-32 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 26px;
}
.title-64 {
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 32px;
}
.text-14 {
    font-size: 14px;
    line-height: 20px;
}
.text-20 {
    font-size: 20px;
    line-height: 28px;
}
.btn {
    height: 48px;
    border-radius: 5px;
}
.btn.btn-blue {
    color: #FFF;
    background-color: var(--body-text);
}
.btn.btn-green {
    color: #FFF;
    background-color: var(--green);
}
a.btn.btn-green{
	line-height: 34px;
}

.logo-login-sx {
    margin-bottom: 48px;
}
.form-group {
    position: relative;
    margin-bottom: 24px;
}
.form-group.float-label label {
    font-size: 14px;
    line-height: 20px;
    color: #AFAFAF;
    font-weight: 400;
    padding: 0 5px;
    background-color: #FFF;
    position: absolute;    
    top: -10px;
    left: 12px;
}
label.error{color:red}
.form-group.float-label label.error{color:red}
.form-group.float-label input.error{border-color:red}
.form-group.float-label select.error{border-color:red}
.checkbox label.error span a{color:red}
.checkbox label.error{color:red}
.form-control {
    height: 56px;
    padding: 16px;
    font-size: 16px;
    line-height: 24px;
    color: #1C1B1F;
    border: 1px solid #ccc;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 5px;
}
.form-control::placeholder {
    color: #1C1B1F;
}
.form-login .btn.btn-blue {
    margin-bottom: 14px;
}
.checkbox label.conditions {
    font-size: 14px;
    color: var(--gray);
}
input[type=checkbox], input[type=radio] {
    margin: 3px 0 0;
}
.w-100 {
    width: 100%;
}
.mb-16 {
    margin-bottom: 16px;
}
.mb-24 {
    margin-bottom: 24px;
}
.mb-32 {
    margin-bottom: 32px;
}

/*.login-container {
    max-width: 1440px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.box-login {
    display: grid;
    grid-template-columns:  50% 50%;
}*/

.login-container {
    width: 100%;
    height: 100%;
}
.box-login {
    display: flex;
    height: 100%; 
    min-height: 100vh;
}

.box-login-sx {
    flex: 1 1 50%;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*display: grid;
    grid-template-rows: minmax(auto, 90px) auto minmax(auto, 50px);
    align-items: center;*/

}
.box-login-sx--top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}
.box-login-sx--top > div:last-child {
    display: flex;
    justify-content: end;
    align-items: center;
    flex: 1 1 auto;
}
.box-login-sx--middle {
    padding: 0 84px;
}
.box-login-sx--bottom {
    border-top: 1px solid #DEDEDE;
    padding: 16px 0;    
}

.box-login-dx {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(237, 240, 240, 0.51);
    padding: 70px;
}
.box-login-dx .text-20 {
    margin-bottom: 32px;
}

@media screen and (max-width: 1440px) {
    .title-64 {
        font-size: 48px;
    }
    .box-login-sx--middle {
        padding: 0 56px;
    }
}
@media screen and (max-width: 1200px) {
    .box-login-sx {
        flex: 1 1 100%;
        flex-direction: column;
    }
    .box-login-dx {
        display: none;
    }
    .box-login-sx--middle {
        padding: 0;
    }
    .box-login-sx--middle {
        padding: 0 56px;
    }
}
@media screen and (max-width: 768px) {
    .box-login-sx--middle {
        padding: 0;
    }
}





/*** DROPDOWN IF NEEDED ***/
.dropdown button {
    background-color: #f6f7f7;
    min-width: 100px;
    width: max-content;
    height: 40px;
    border-radius: 5px;
    color: var(--body-text);
    padding: 10px;
    margin-left: 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    justify-content: space-evenly;
}

.dropdown button img {
    margin: 0 5px 0 0;
}

.dropdown button img,
.dropdown-content li img {
    width: 28px;
}

.dropdown button,
.dropdown-content li {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    font-family: "Noto Sans JP", sans-serif;
    font-family: "Noto Sans Arabic", sans-serif;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: 500;
}

.arrow-down {
    width: 0;
    height: 0;
    display: inline-block;
    vertical-align: middle;
    border-style: solid;
    border-width: 4px 4px 0 4px;
    border-color: var(--body-text) transparent transparent transparent;
    margin: 0 0 0 5px;
}

.dropdown button:hover {
    cursor: pointer;
    color: #FFF;
    background-color: var(--gray);
}

/* Style for the dropdown content */
.dropdown-content {
    display: none;
    position: absolute;
    margin: 1px 0 0 0;
    padding: 0;
    background-color: #f5f5f5;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    overflow-y: none;
    max-height: 315px;
    right: 0;
}

/* Style for the dropdown content items */
.dropdown-content li {
    color: black;
    padding: 6px 8px;
    text-decoration: none;
    justify-content: start;
}

.dropdown-content li img {
    margin: 0 20px 0px 0;
}

/* Style for the dropdown content items on hover */
.dropdown-content li:hover {
    background-color: #f1f1f1;
    cursor: pointer;
    color: blue;
    border-radius: 5px;
}

/* Show the dropdown content when the dropdown button is clicked */
.dropdown:focus-within .dropdown-content {
    display: block;
}

/* Animate the dropdown content */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content {
    animation: slideIn 0.3s ease-out;
}

/* Scrollbar styles */
::-webkit-scrollbar {
    width: 8px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: #c2c9d2;
}
#hidden_billing_address{display:none;margin-top:60px}


.form-group.float-label label {
    z-index: 1;
    }
    .select2-container--default .select2-selection--single {
        height: 56px;
        padding: 16px;
        font-size: 16px;
        line-height: 24px;
        color: #1C1B1F;
        border: 1px solid #ccc;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-radius: 5px;
    }
    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 56px;
    }

    .select2-container--open .select2-dropdown--below {
        height: auto;
    }
    .select2-search--dropdown {
        padding: 0;
    }
    .select2-results {
        background: #FFF;
        margin-top: 10px;
    }
