.my-account-nav-section {
  background-color: #000000;
}
.my-account-nav-section .my-account-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 35px;
  padding-right: 35px;
}
.my-account-nav-section .my-account-nav li a {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.7px;
  color: #ffffff;
  text-decoration: none;
  padding: 22px 0;
  display: block;
  transition: 0.25s;
  text-transform: uppercase;
  white-space: nowrap;
}
.my-account-nav-section .my-account-nav li:last-child{
  padding-right: 20px;
}
.my-account-nav-section .my-account-nav li a.current{
  color:#FF7606;
}
.my-account-nav-section .my-account-nav li a:hover{
    color:#FF7606;
}
.account-details-section .forms-wrap {
    max-width: 632px;
    margin: auto;
}
.account-details-section .forms-wrap .form-title{
    font-family: Poppins;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    border-bottom: 1px solid #000;
    padding-bottom: 24px;
}

.login-page-wrapper .login-wrap .login-container {
  display: flex;
  flex-direction: column;
}
.account-details-section .forms-wrap .input-field {
    padding: 20px 16px 10px 16px;
    border-radius: 8px;
    padding-right: 50px;
    width: 100%;
    border: 0;
    outline: none;
    font-weight: 600;
    font-size: 16px;
    background-color:#ffffff;
    border: 1px solid #fff;
}
.account-details-section .forms-wrap .input-field.email {
  margin-bottom: 0px;
}
.account-details-section .forms-wrap .input-container label,  .account-details-section .forms-wrap .input-container-full label{
    position: absolute;
    left: 0;
    top: 0;
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    color: #ADADAD;
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    margin-left: 16px;
    cursor: text;
    transition: 0.2s ease-in-out;
}
.account-details-section .forms-wrap .input-field:focus + label,
.account-details-section .forms-wrap .input-field:not(:placeholder-shown) + label {
    color: #FF7606;
    font-size: 8px;
    font-weight: 600;
    top: -10px;
    pointer-events: none;
}
.account-details-section .forms-wrap .input-field::placeholder{
    color: transparent;
}
.account-details-section .forms-wrap .input-field:focus,
.account-details-section .forms-wrap .input-field:not(:placeholder-shown) {
    border: 1px solid #FF7606;
}
.account-details-section .forms-wrap .btn-submit {
    border: none;
    outline: none;
    margin-top: 24px;
    cursor: pointer;
    background-color: #FF7606;
    color: #ffffff;
    border-radius: 8px;
    padding: 15px 0;
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    transition: 0.2s;
}
.account-details-section .forms-wrap .btn-submit:hover {
    background-color: #ff953d;
}
.account-details-section .forms-wrap .input-container-full {
    position: relative;
    width: 100%;
}
.account-details-form {
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    padding-bottom: 70px;
}
.input-container {
    max-width: calc(50% - 8px);
    width: calc(50% - 8px);
    position: relative;
}
.account-details-section .forms-wrap .country-input {
    padding: 15px 16px 14px 16px;
    border-radius: 8px;
    padding-right: 50px;
    width: 100%;
    border: 0;
    outline: none;
    font-weight: 600;
    font-size: 16px;
    background-color:#ffffff;
    border: 1px solid #FF7606;
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    padding-right: 37px;
    background-image: url(/assets/icons/select-arrow.svg);
    background-repeat: no-repeat;
    background-position-x: calc(100% - 16px);
    background-position-y: center;
}
.country-input.empty {
    font-weight: 400 !important;
    font-size: 16px;
    color: #ADADAD;
    border: 1px solid #fff !important;
}
.account-details-section .forms-wrap .country-input:focus {
    border: 1px solid #FF7606 !important;
    background-image: url(/assets/icons/select-arrow-open.svg);
}
.account-details-section .forms-wrap small {
    max-width: calc(50% - 8px);
    font-weight: 500;
    font-style: italic;
    font-size: 12px;
}
.account-details-section .forms-wrap .checkbox {
    position: relative;
    padding-left: 30px;
}
.account-details-section .forms-wrap .checkbox{
    font-size: 14px;
    display: flex;    
    justify-content: space-between;
    align-items: center;
    align-content: center;
    width: 100%;
}
.account-details-section .forms-wrap .checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 18px;
    width: 18px;
    z-index: 9999;
    left: 0;
    margin: 0;
    /* padding: 0; */
}
.account-details-section .forms-wrap .checkbox .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 1px solid #DAD1CA;
    border-radius: 4px;
}
.account-details-section .forms-wrap .checkbox input:checked ~ .checkmark:after {
    display: block;
}
.account-details-section .forms-wrap .checkbox .checkmark:after {
    left: 4px;
    top: 4px;
    width: 8px;
    height: 8px;
}
.account-details-section .forms-wrap .checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    background: url(assets/icons/checkbox-cross-white.svg);
    background-repeat: no-repeat;
    background-size: 8px 8px;
}
.account-details-section .forms-wrap .checkbox input:checked ~ .checkmark {
    background-color: #FF7606;
}
.account-details-section .forms-wrap .checkbox input:hover ~ .checkmark:after {
    display: block;
    position: absolute;
    background: url(assets/icons/checkbox-cross.svg);
    background-repeat: no-repeat;
    background-size: 8px 8px;
}
.account-details-section .forms-wrap .checkbox label {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
}
.account-details-section .forms-wrap .checkbox label a{
    color:#000000;
}
.account-details-section .forms-wrap .checkbox label a:hover{
    color:#FF7606;
}
.account-details-section .forms-wrap .company-details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}
.account-details-section .forms-wrap .btn-submit {
    border: none;
    outline: none;
    margin-top: 0px;
    cursor: pointer;
    background-color: #FF7606;
    color: #ffffff;
    border-radius: 8px;
    padding: 15px 0;
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    transition: 0.2s;
    width: 100%;
}
.account-details-section .forms-wrap .btn-submit:hover {
    background-color: #ff953d;
}
.password-change {
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    padding-bottom: 120px;
}
.password-change input[type=submit]:disabled {
    background-color: #D0CBC2 !important;
}
@media only screen and (max-width: 768px) {
    .input-container {
        max-width: 100%;
        width: 100%;
        position: relative;
    }
    .account-details-section .forms-wrap small {
        max-width: 100%;
    }
    .account-details-section .forms-wrap .form-title {
        font-size: 24px;
    }
}