/* ===== Usage ===== */
/* ===== Usage ===== */
/* ===== Usage ===== */
/* ===== Usage ===== */
.woocommerce {
  background: #ffffff;
  height: 100%;
  width: 100%;
  display: block;
}

.background-opacity {
  background: transparent;
}

@media only screen and (max-width: 600px) {
  .background-opacity {
    background: rgba(0, 0, 0, 0.85);
  }
  .my-account-content
    .woocommerce-MyAccount-navigation.account-navigation::before {
    display: block !important;
    width: 100% !important;
    background: rgba(0, 0, 0, 0.85);
    content: '';
    position: fixed;
    height: 100% !important;
  }
  .my-account-content
    .woocommerce-MyAccount-navigation.account-navigation
    .menu-navigation {
    margin-top: 0;
    padding-top: 16px;
    background-color: #000;
    height: 100%;
  }
}

.woocommerce-account {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.woocommerce-account .woocommerce-MyAccount-content {
  float: unset;
  width: calc(100% - 275px);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 600px) {
  .woocommerce-account .woocommerce-MyAccount-content {
    padding: 0;
    width: 100%;
  }
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  float: unset;
}

.header {
  height: 64px;
  background: #f4f4f4;
  width: 100%;
  position: sticky;
  top: 0;
  padding-left: 20px;
  z-index: 5;
}

@media only screen and (max-width: 600px) {
  .header {
    padding-left: 0;
    z-index: 2000;
  }
  .header .account-header ul.profile-menu {
    right: 18px;
  }
}

.account-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 30px;
  z-index: 1000;
}

.account-header .head-navigation {
  display: none;
}

@media only screen and (max-width: 600px) {
  .account-header .head-navigation {
    display: flex !important;
  }
}

.account-header .right-account-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.account-header .header-title {
  display: block;
  color: #002f48;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}

.account-header .icon-menu-bar {
  width: 22px;
  height: 22px;

  display: none;
}

.account-header .icon-menu-bar i {
  display: block;
  width: 24px;
  height: 24px;
  background: url('../icons/menu.svg') no-repeat;
}

.account-header .icon-menu-bar i.icon-close {
  background: url('../icons/close.svg') no-repeat;
}

.account-header .right-top-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.account-header .right-organisation-dropdown {
  margin-right: 24px;
  position: relative;
}

.account-header .notify-bell {
  color: #002f48;
  font-size: 14px;
  margin-right: 24px;
  position: relative;
  display: none;
}

.account-header .notify-bell i.icon-bell {
  width: 24px;
  height: 24px;
  display: block;
  background: url('../icons/bell.svg') no-repeat;
}

@media only screen and (max-width: 600px) {
  .account-header .notify-bell i.icon-bell {
    background: url('../icons/bell-mobile.svg') no-repeat;
  }
}

.account-header .notify-bell span {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 17px;
  height: 17px;
  background: #eb5757;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  line-height: 17px;
}

.account-header .avatar {
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.account-header .avatar img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  object-fit: cover;
}

.woocommerce-MyAccount-navigation-link img {
  height: 16px !important;
}

.account-header .avatar i {
  margin-left: 13px;
  font-size: 14px;
}

.account-header .right-profile {
  display: block;
  padding: 16px 0;
}

.account-header .right-profile i.icon-down {
  width: 24px;
  height: 24px;
  display: block;
  background: url('../icons/down-arrow.svg') no-repeat;
}
@media only screen and (max-width: 600px) {
  .account-header .right-profile i.icon-down {
    display: none;
  }
}

.account-header .right-profile:hover i.icon-down {
  background: url('../icons/top-arrow.svg') no-repeat;
}

.account-header .right-profile:hover ul.profile-menu {
  display: block;
}

.account-header ul.profile-menu {
  position: absolute;
  display: none;
  top: 56px;
  right: 24px;
  width: 152px;
  background: #ffffff;
  border-radius: 8px;
  padding: 16px 0;
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.07);
}

.account-header ul.profile-menu li a {
  font-size: 13px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  color: #002f48;
  padding: 8px;
}

.account-header ul.profile-menu li a i {
  margin: 0px 8px 0 16px;
  width: 24px;
}

.account-header ul.profile-menu li a:hover {
  background: #f4f4f4;
}

@media only screen and (max-width: 600px) {
  .account-header {
    padding-left: 0px;
    background: #000;
    color: #ffffff;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }

  .account-header .logo {
    width: 90px;
    display: block;
    background: url '../images/navigation-logo.png' no-repeat;
  }

  .account-header .logo img {
    width: 100%;
  }

  .account-header .icon-menu-bar {
    display: block;
    width: 50px;
    height: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .account-header .header-title {
    display: none;
  }

  .account-header .notify-bell,
  .account-header .avatar {
    color: #ffffff;
  }
}

.my-account-content {
  display: flex;
  position: relative;
  min-height: 100%;
  flex-wrap: wrap;
}

.my-account-content .lyd-membership-expired-warning {
  width: 100%;
}

.head-navigation {
  padding: 12px 24px;
  height: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-content: space-between;
  align-items: center;
  background: #000;
  width: 275px;
  position: relative;
}

/* .head-navigation:before {
  background: url(../images/eclip.png) no-repeat;
  content: "";
  position: absolute;
  top: 14px;
  right: -87px;
  width: 100px;
  height: 100px;
} */

.head-navigation.small-menu {
  width: 70px;
  padding: 12px 2px;
}

.head-navigation.small-menu .logo {
  width: 40px;
  height: 40px;
  display: block;
  background: url('../images/logo-small.png') no-repeat;
  background-size: contain;
  background-position: center;
}

.head-navigation .logo {
  width: 120px;
  background: url('../images/logo.png') no-repeat;
  height: 120px;
  background-size: contain;
}

@media only screen and (max-width: 600px) {
  .head-navigation {
    padding: 12px 0px;
    border-bottom: none;
    width: auto;
    height: 100%;
  }

  .head-navigation::before {
    background: unset;
  }
}

.head-navigation .toggle-button {
  width: 24px;
  height: 24px;
  background: #f4f4f4;
  border-radius: 50%;
  color: #000;
  text-align: center;
  position: absolute;
  right: -12px;
  top: 20px;
  bottom: 0;
  border: none;
}

.head-navigation .toggle-button i {
  width: 24px;
  height: 24px;
  display: block;
  z-index: 100;
  margin-left: 1px;
  margin-top: 4px;
}

.head-navigation .toggle-button i.icon-nav-right {
  background: url('../icons/right-arrow.svg') no-repeat !important;
}

.head-navigation .toggle-button i.icon-nav-left {
  background: url('../icons/left-arrow.svg') no-repeat;
}

.head-navigation .toggle-button:focus {
  outline: unset;
}

@media only screen and (max-width: 600px) {
  .head-navigation .toggle-button {
    display: none;
  }
}

.main-content {
  padding: 0 2rem;
  flex: 1;
  /* height: calc(100% - 85px); */
  overflow: hidden;
}

.woocommerce-MyAccount-navigation.account-navigation {
  font-size: 13px;
  line-height: 1.8461538462;
  letter-spacing: -0.0153846154em;
  font-family: Montserrat;
  font-style: normal;
  background-color: #000;
  width: 275px;
  z-index: 1000;
  top: 0;
  /* position: relative; */
  position: sticky;
  height: 100vh;
}

.woocommerce-MyAccount-navigation.account-navigation .icon-menu-bar {
  display: none;
}

.woocommerce-MyAccount-navigation.account-navigation.small-menu {
  width: 70px;
}

.woocommerce-MyAccount-navigation.account-navigation.small-menu
  .head-navigation {
  padding: 12px 2px;
}

.woocommerce-MyAccount-navigation.account-navigation.small-menu
  .head-navigation
  .logo {
  width: 70px;
}

.woocommerce-MyAccount-navigation.account-navigation.small-menu .block-upgrade {
  flex-wrap: wrap;
  justify-content: unset;
  padding: 10px 0;
  left: 10px;
  right: 10px;
  bottom: 86px;
}

.woocommerce-MyAccount-navigation.account-navigation.small-menu
  .block-upgrade
  .icon-plan {
  margin: 0 auto;
}

.woocommerce-MyAccount-navigation.account-navigation.small-menu
  .block-upgrade
  .current-plan {
  width: 100%;
  padding-left: 0;
  display: none;
}

.woocommerce-MyAccount-navigation.account-navigation.small-menu
  .block-upgrade
  .btn-upgrade {
  padding: 0px 2px;
  margin: 0 auto;
  display: none;
}

.woocommerce-MyAccount-navigation.account-navigation.small-menu
  .menu-navigation {
  text-align: center;
  padding: 0px 10px;
  margin-top: 16px;
}

.woocommerce-MyAccount-navigation.account-navigation.small-menu ul li a span {
  display: none;
}

.woocommerce-MyAccount-navigation.account-navigation.small-menu ul li a i {
  width: 24px;
  height: 24px;
  display: block;
  margin-right: 0;
}

.woocommerce-MyAccount-navigation.account-navigation.small-menu ul li a i img {
  width: 100%;
}

.woocommerce-MyAccount-navigation.account-navigation.small-menu .btn-company {
  left: 10px;
  right: 10px;
  padding: 0px;
  margin: 0 auto;
  text-align: center;
  display: block;
}

.woocommerce-MyAccount-navigation.account-navigation.small-menu
  .btn-company
  img {
  display: block;
  width: 100%;
}

.woocommerce-MyAccount-navigation.account-navigation.small-menu
  .btn-company
  span {
  display: none;
}

.woocommerce-MyAccount-navigation.account-navigation.small-menu .btn-company i {
  line-height: 48px;
  text-align: center;
  display: block;
}

@media only screen and (max-width: 600px) {
  .woocommerce-MyAccount-navigation.account-navigation {
    position: fixed;
    top: 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    height: calc(100% - 64px);
  }

  .woocommerce-MyAccount-navigation.account-navigation .head-navigation {
    display: none;
  }
  .woocommerce-MyAccount-navigation.account-navigation {
    z-index: 1001;
  }
}

.woocommerce-MyAccount-navigation.account-navigation .menu-navigation {
  padding: 0px 24px;
  position: relative;
  margin-top: 16px;
}

.woocommerce-MyAccount-navigation.account-navigation .block-upgrade {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  position: absolute;
  width: auto;
  left: 24px;
  right: 24px;
  bottom: 94px;
}

.woocommerce-MyAccount-navigation.account-navigation .block-upgrade .icon-plan {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #002f48;
  text-align: center;
}

.woocommerce-MyAccount-navigation.account-navigation
  .block-upgrade
  .icon-plan
  img {
  margin: 0 auto;
  margin-top: 10px;
}

.woocommerce-MyAccount-navigation.account-navigation
  .block-upgrade
  .current-plan {
  color: #ffffff;
  text-transform: uppercase;
  width: 60%;
  padding-left: 22px;
}

.woocommerce-MyAccount-navigation.account-navigation
  .block-upgrade
  .current-plan
  span:first-child {
  color: #f4f4f4;
  font-size: 11px;
  text-transform: none;
  opacity: 0.7;
}

.woocommerce-MyAccount-navigation.account-navigation
  .block-upgrade
  .btn-upgrade {
  background: #2ba942;
  border-radius: 34px;
  color: #ffffff;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 2px 8px;
  font-size: 11px;
}

.woocommerce-MyAccount-navigation.account-navigation .btn-company {
  width: auto;
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  color: #ffffff;
  font-size: 13px;
  padding: 12px 20px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 8px 24px 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.woocommerce-MyAccount-navigation.account-navigation .btn-company img {
  display: none;
}

.woocommerce-MyAccount-navigation.account-navigation ul {
  padding: 0;
  margin: 0;
}

.woocommerce-MyAccount-navigation.account-navigation ul li {
  margin: 0 0 5px;
  padding: 0;
  font-weight: normal;
  border: none;
}

.woocommerce-MyAccount-navigation.account-navigation ul li a {
  display: flex;
  padding: 0.75rem;
  align-items: center;
  justify-content: flex-start;
  font-weight: 400;
}

.woocommerce-MyAccount-navigation.account-navigation ul li a i {
  font-size: 1rem;
  margin-right: 18px;
}

.woocommerce-MyAccount-navigation.account-navigation ul li.is-active {
  font-weight: 400;
  border: none;
}

.woocommerce-MyAccount-navigation.account-navigation ul li.is-active a {
  background: #ffffff;
  color: #002f48;
  border-radius: 8px;
}

.woocommerce-MyAccount-navigation.account-navigation
  ul
  li.is-active
  a
  .icon-company,
.woocommerce-MyAccount-navigation.account-navigation
  ul
  li
  a:hover
  .icon-company {
  background: url('../icons/company-hover.svg') no-repeat;
}

.woocommerce-MyAccount-navigation.account-navigation
  ul
  li.is-active
  a
  .icon-order,
.woocommerce-MyAccount-navigation.account-navigation ul li a:hover .icon-order {
  background: url('../icons/order-hover.svg') no-repeat;
}

.woocommerce-MyAccount-navigation.account-navigation
  ul
  li.is-active
  a
  .icon-help-center,
.woocommerce-MyAccount-navigation.account-navigation
  ul
  li
  a:hover
  .icon-help-center {
  background: url('../icons/help-center-hover.svg') no-repeat;
}

.woocommerce-MyAccount-navigation.account-navigation
  ul
  li.is-active
  a
  .icon-upgrade,
.woocommerce-MyAccount-navigation.account-navigation
  ul
  li
  a:hover
  .icon-upgrade {
  background: url('../icons/upgrade-hover.svg') no-repeat;
}

.woocommerce-MyAccount-navigation.account-navigation
  ul
  li.is-active
  a
  .icon-document,
.woocommerce-MyAccount-navigation.account-navigation
  ul
  li
  a:hover
  .icon-document {
  background: url('../icons/my-document-hover.svg') no-repeat;
}

.woocommerce-MyAccount-navigation.account-navigation
  ul
  li.is-active
  a
  .icon-my-integration,
.woocommerce-MyAccount-navigation.account-navigation
  ul
  li
  a:hover
  .icon-my-integration {
  background: url('../icons/my-integration-hover.svg') no-repeat;
}

.woocommerce-MyAccount-navigation.account-navigation
  ul
  li.is-active
  a
  .icon-template,
.woocommerce-MyAccount-navigation.account-navigation
  ul
  li
  a:hover
  .icon-template {
  background: url('../icons/templates-hover.svg') no-repeat;
}

.woocommerce-MyAccount-navigation.account-navigation
  ul
  li.is-active
  a
  .icon-subscription,
.woocommerce-MyAccount-navigation.account-navigation
  ul
  li
  a:hover
  .icon-subscription {
  background: url('../icons/my-subscription-hover.svg') no-repeat;
}

.woocommerce-MyAccount-navigation.account-navigation
  ul
  li.is-active
  a
  .icon-payment,
.woocommerce-MyAccount-navigation.account-navigation
  ul
  li
  a:hover
  .icon-payment {
  background: url('../icons/payment-methods-hover.svg') no-repeat;
}
.woocommerce-MyAccount-navigation.account-navigation
  ul
  li.is-active
  a
  .icon-membership,
.woocommerce-MyAccount-navigation.account-navigation
  ul
  li
  a:hover
  .icon-membership {
  background: url('../icons/membership-hover.svg') no-repeat;
}

.woocommerce-MyAccount-navigation.account-navigation ul li a {
  border: 1px solid transparent;
  color: #ffffff;
}

.woocommerce-MyAccount-navigation.account-navigation ul li a .icon-png {
  width: 24px;
  height: 24px;
}

.woocommerce-MyAccount-navigation.account-navigation ul li a .icon-company {
  background: url('../icons/company.svg') no-repeat;
}

.woocommerce-MyAccount-navigation.account-navigation ul li a .icon-order {
  background: url('../icons/order.svg') no-repeat;
}

.woocommerce-MyAccount-navigation.account-navigation ul li a .icon-help-center {
  background: url('../icons/help-center.svg') no-repeat;
}

.woocommerce-MyAccount-navigation.account-navigation ul li a .icon-upgrade {
  background: url('../icons/upgrade.svg') no-repeat;
}

.woocommerce-MyAccount-navigation.account-navigation ul li a .icon-document {
  background: url('../icons/my-document.svg') no-repeat;
}

.woocommerce-MyAccount-navigation.account-navigation
  ul
  li
  a
  .icon-my-integration {
  background: url('../icons/my-integration.svg') no-repeat;
}

.woocommerce-MyAccount-navigation.account-navigation ul li a .icon-template {
  background: url('../icons/templates.svg') no-repeat;
}

.woocommerce-MyAccount-navigation.account-navigation ul li a .icon-membership {
  background: url('../icons/membership.svg') no-repeat;
}

.woocommerce-MyAccount-navigation.account-navigation
  ul
  li
  a
  .icon-subscription {
  background: url('../icons/my-subscription.svg') no-repeat;
}

.woocommerce-MyAccount-navigation.account-navigation ul li a .icon-payment {
  background: url('../icons/payment-methods.svg') no-repeat;
}

.woocommerce-MyAccount-navigation.account-navigation ul li a:hover {
  background: #ffffff;
  color: #002f48;
  border-radius: 8px;
}

@media only screen and (max-width: 600px) {
  .woocommerce-MyAccount-navigation.account-navigation {
    display: none;
  }
}

@media only screen and (max-height: 480px) {
  .woocommerce-MyAccount-navigation.account-navigation .menu-navigation {
    height: calc(100% - 70px);
    overflow: auto;
  }
}

/* Hide preview button*/
.wcdp-preview-btn-div .wcdp-preview-btn {
  visibility: hidden;
}

/** LYD Loading **/

.lyd-loading {
  background-color: var(--primary);
  position: fixed;
  z-index: 10001;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 1;
  left: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.5s linear;
}

.lyd-loading svg circle:first-child {
  -webkit-animation: hide_3 3s infinite;
  animation: hide_3 3s infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.lyd-loading svg circle:nth-child(2) {
  -webkit-animation: hide_2 3s infinite;
  animation: hide_2 3s infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.lyd-loading svg circle:nth-child(3) {
  -webkit-animation: hide_1 3s infinite;
  animation: hide_1 3s infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.lyd-loading svg circle + path {
  -webkit-animation: hide_1 3s infinite;
  animation: hide_1 3s infinite;
}
.lyd-loading svg circle + path + g > g {
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-animation: rotate 3s linear infinite;
  animation: rotate 3s linear infinite;
}
.lyd-loading svg g[filter='url(#filter2_d)'] {
  -webkit-animation: animateHeart 1.2s linear infinite;
  animation: animateHeart 1.2s linear infinite;
  transform-origin: center center;
  transform-box: fill-box;
}
@-webkit-keyframes animateHeart {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  5% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  10% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  15% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@keyframes animateHeart {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  5% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  10% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  15% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@-webkit-keyframes hide_1 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes hide_2 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  67% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes hide_2 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  67% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes hide_1 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes hide_3 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes hide_3 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.inline-elem {
  display: inline-block;
}
.elem-first {
}
.elem-second {
  padding-left: 0 !important;
}
.elem-second label {
  display: none;
}
.elem-second input {
  width: 80%;
}
