/* 
Theme Name: Soul
Author: Aviv Boaz
Version: 1.0.0
*/

/* COLORS */
:root {
  --heading-color: #0281a3;
  --gray-color: #7c7c7c;
}

.only-mobile {
  display: none !important;
}

.dont-show {
  display: none !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p:empty {
  display: none;
}

html {
  direction: rtl;
  font-family: "Assistant";
  font-size: 20px;
  line-height: 1.3;
}

body {
  overflow-x: hidden;
}

body.home {
  background-image: url("./assets/background.png");
  background-repeat: no-repeat;
  background-position-y: -50px;
  background-size: 2050px;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  color: var(--heading-color);
}

h2,
h3 {
  font-weight: 100;
}
h1 {
  font-size: 50px;
  font-weight: 100;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.5em;
}

h5 {
  font-size: 1em;
}

footer {
  background-color: var(--heading-color);
}

img {
  max-width: 100%;
  object-fit: cover;
}

textarea {
  resize: none;
  padding: 5px;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input {
  font-family: inherit;
}

ol {
  padding: 0 20px 10px 20px;
  list-style-type: hebrew;
}

.header-small-icon {
  font-size: 14px;
  margin: 0 0 0 3px;
}

.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.font-small {
  font-size: 0.7em;
}

.very-small-font {
  font-size: 0.6em;
}

header {
  display: contents;
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 1;
}

.flex {
  display: flex;
}

header .top-strip {
  direction: ltr;
  color: white;
  height: 50px;
  display: flex;
  align-items: center;
  font-size: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 10px;
}

header .top-strip-container {
  background-color: var(--heading-color);
  position: sticky;
  top: 0;
  z-index: 1;
}

header .top-strip > * {
  margin-right: 10px;
}

header .top-strip > *:nth-child(n + 3) {
  margin-right: 20px;
}

/* MENU */
#menu-header-menu ul {
  list-style: none;
}

.links-title a {
  cursor: text !important;
}

.header-menu-container {
  border-bottom: 2px solid #ffdb55;
  position: sticky;
  top: 50px;
  background-color: white;
  z-index: 1;
}

.trail-line {
  background: linear-gradient(0.25turn, #3f87a6, #ebf8e1, #f69d3c);
  background-size: 100vw, 100vw;
}

.header-menu-container .trail-line,
.header-menu-container .trail-line-gray {
  position: absolute;
  top: calc(100% + 2px);
  right: 0;
  width: 0;
  height: 5px;
  background-color: #0281a3;
  transition: all 0.2s linear;
  display: none;
  border-radius: 5px;
}

.header-menu-container .trail-line-gray {
  width: 100%;
  background-color: #dcdcdc;
}

.treatments-template-default .header-menu-container .trail-line,
.articles-template-default .header-menu-container .trail-line,
.treatments-template-default .header-menu-container .trail-line-gray,
.articles-template-default .header-menu-container .trail-line-gray {
  display: block;
}

.header-menu {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  height: 80px;
  font-size: 16px;
}

.header-menu > a {
  z-index: 2;
  display: flex;
  align-items: center;
  line-height: 1;
  color: dimgrey;
}

.header-menu .logo {
  height: 88px;
  margin-left: 5px;
  transform: translateY(5px);
}

.logo-text-title {
  font-size: 1.2em;
  font-weight: 600;
}

.menu-header-menu-container {
  display: flex;
  flex: 1;
  z-index: 1;
}

#menu-header-menu {
  display: flex;
  flex: 1;
  justify-content: space-around;
}

#menu-header-menu > li > a {
  align-self: stretch;
  align-items: center;
  display: flex;
  position: relative;
  color: black;
  font-size: 18px;
}

#menu-header-menu > * {
  display: flex;
  align-items: center;
  color: #0281a3;
}

#menu-header-menu > li.mega-menu-1 > .sub-menu {
  position: absolute;
  top: calc(100% + 2px);
  right: 0;
  padding-top: 20px;
  padding-bottom: 350px;
  background-color: white;
  width: 260px;
}

body.desktop #menu-header-menu > li.mega-menu-1 > .sub-menu {
  animation: slide-in-right 0.5s ease-in-out;
  display: none;
}

body.desktop #menu-header-menu > li.mega-menu-1.mega-menu-active > .sub-menu {
  display: block;
}

#menu-header-menu > li.mega-menu-1.tehima > .sub-menu {
  padding-bottom: 330px;
}

#menu-header-menu > li.mega-menu-1.item-about > .sub-menu {
  padding-bottom: 250px;
}

#menu-header-menu > li.mega-menu-2 > .sub-menu {
  position: absolute;
  top: calc(100% + 2px);
  right: 300px;
  padding-top: 20px;
  background-color: white;
  width: calc(100% - 380px);
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding-bottom: 50px;
  grid-gap: 0 10px;
  display: none;
}

#menu-header-menu > li.mega-menu-2.mega-menu-active > .sub-menu {
  display: grid;
  grid-template-rows: auto;
  background-color: whitesmoke;
}

body.desktop #menu-header-menu > li.mega-menu-2.mega-menu-active > .sub-menu {
  animation: slide-in-right 0.5s ease-in-out;
}

#menu-header-menu > li.mega-menu-2 > .sub-menu > li > a {
  text-align: center;
}
#menu-header-menu
  > li.mega-menu-2
  > .sub-menu
  > li:not(.mega-menu-title):not(.span-all-row):not(.back-to-main-menu)
  > a {
  color: black;
}

#menu-header-menu > li.mega-menu-2 > .sub-menu > li.span-all-row > a {
  display: block;
  text-align: left;
  margin-right: auto;
  padding: 0 20px;
}

#menu-header-menu > li.mega-menu-2 > .sub-menu > li {
  display: flex;
  padding: 10px 0;
}

#menu-header-menu > li.mega-menu-2 > .sub-menu > li > a > img {
  flex: 1;
  padding: 0;
  border-radius: 3px;
}

#menu-header-menu > li.mega-menu-1 > .sub-menu::after {
  content: " ";
  position: absolute;
  top: 0px;
  left: 100%;
  width: 100vw;
  background-color: white;
  bottom: 0;
}

#menu-header-menu > li.mega-menu-1 > .sub-menu::before {
  content: " ";
  position: absolute;
  top: 0px;
  right: 100%;
  width: 100vw;
  height: 100%;
  background-color: #f5f5f5;
}

#menu-header-menu > li.mega-menu-2 > .sub-menu::before {
  content: " ";
  position: absolute;
  top: 0px;
  right: 100%;
  width: 100vw;
  height: 100%;
  background-color: #f5f5f5;
}

#menu-header-menu > li.mega-menu-2 > .sub-menu::after {
  content: " ";
  position: absolute;
  top: 0px;
  left: 100%;
  width: 100vw;
  height: 100%;
  background-color: #f5f5f5;
}

#menu-header-menu .page-menu-1.therapists > .sub-menu {
  grid-auto-rows: 50px 200px 200px 200px;
  grid-gap: 10px;
  grid-template-columns: repeat(2, 300px);
}

#menu-header-menu .page-menu-1.therapists > .sub-menu > li > a > img {
  padding-right: 10px;
  width: 100%;
  object-fit: cover;
  padding: 0;
  height: 180px;
}
.sub-menu {
  display: none;
}

.no-link > a {
  cursor: text;
}

.invisible > a {
  display: none;
}

.invisible > a + .sub-menu li:first-of-type {
  padding-top: 0;
}

.mega-menu-title {
  font-size: 24px;
  font-weight: 700;
}

li:hover > .sub-menu {
  display: block;
}

.sub-menu li {
  padding: 15px 10px;
}

.sub-menu li:not(.span-all-row) > a {
  display: block;
}

.page-menu-1 .sub-menu {
  position: absolute;
  top: 0;
  right: 255px;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 20px;
  width: 1000px;
  padding-right: 20px;
  min-height: 100%;
  grid-auto-rows: 50px;
  grid-gap: 15px;
}

.mega-menu.about .page-menu-1 .sub-menu {
  right: 260px;
}

.mega-menu.about .page-menu-1 .sub-menu {
  grid-template-columns: repeat(5, 200px);
  grid-gap: 0px 10px;
}

.mega-menu-1.tehima .page-menu-1 .sub-menu {
  right: 260px;
}

.mega-menu-1.about .sub-menu .sub-menu img {
  width: 100%;
  display: block;
}

.mega-menu-1.about .sub-menu .sub-menu li {
  padding: 15px 0 0 0;
}

.mega-menu-1.about .page-menu-1 .sub-menu li:first-of-type {
  padding-bottom: 10px;
}

.mega-menu-1.about .gray {
  color: #7c7c7c;
}

.page-menu-1:hover > .sub-menu {
  display: grid;
}

.page-menu-1 .sub-menu li:first-of-type,
.mega-menu-2 .sub-menu li:first-of-type,
.mega-menu-3 .sub-menu li:first-of-type {
  font-size: 18px;
  grid-column: 1 / -1;
  color: var(--heading-color);
  padding: 10px;
  font-weight: 600;
  border-bottom: 2px solid;
}

.mega-menu > a {
  padding-left: 15px;
  position: relative;
}

.mega-menu > a::after {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  right: calc(100% - 12px);
  border-bottom: 1px solid #000000;
  border-right: 1px solid #000000;
  transform: rotate(45deg);
  transform-origin: 0 0;
  top: 45%;
}

.mega-menu.mega-menu-active > a::after {
  border-top: 1px solid #000000;
  border-left: 1px solid #000000;
  border-bottom: 0px solid #000000;
  border-right: 0px solid #000000;
  top: 50%;
}

.mega-menu:hover > a::before,
.mega-menu-1.current-menu-ancestor > a::before,
#menu-header-menu > li:hover > a::before,
#menu-header-menu > li.current-menu-item > a::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 100%;
  background-color: #0281a3;
}

.mega-menu-1 > .sub-menu > li {
  padding: 10px 20px;
}

.mega-menu-1 > .sub-menu > li:not(.no-link):hover {
  background-color: #f5f5f5;
}

.mega-menu-1 .sub-menu .sub-menu {
  color: black;
  grid-auto-rows: auto;
  min-height: unset;
  padding-bottom: 320px;
}

.mega-menu-1 .sub-menu .sub-menu li:not(:first-of-type) {
  transition: all 0.1s ease-in-out;
}

.mega-menu-1:not(.tehima):not(.about)
  .sub-menu
  .sub-menu
  li:not(:first-of-type):not(.span-all-row):hover {
  background-color: white;
}

.mega-menu-1 .sub-menu .sub-menu img {
  padding: 0;
  width: 100%;
  border-radius: 3px;
  margin-bottom: 5px;
  height: 140px;
}

.mega-menu-1 .sub-menu .sub-menu span {
  color: #0281a3;
}

.mega-menu-1 .sub-menu .sub-menu span span {
  color: black;
}

.mega-menu-1 .grid-four-rows .sub-menu {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 20px 10px;
  width: 860px;
}
.mega-menu-1 .grid-four-rows .sub-menu li:not(:first-of-type) {
  padding: 0;
}

/* open default menu */

body:not(.menu-open) .menu-item-open-first {
  background-color: #f5f5f5;
}

body:not(.menu-open) .menu-item-open-first {
  background-color: #f5f5f5;
}

body:not(.menu-open) .menu-item-open-first > .sub-menu {
  display: grid;
}

/* end of open default menu */

.link {
  color: var(--heading-color);
}

.text-left {
  text-align: left;
}

.span-all-row {
  grid-column: 1 / -1;
}

.span-all-row:not(.no-link) a {
  text-decoration: underline;
}

.item-bold {
  font-weight: 700;
}

li.item-with-arrow > a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  transform: rotate(45deg) translateY(-50%);
}

li.item-with-arrow > a {
  display: block;
  width: 100%;
  position: relative;
  padding-left: 20px;
}

li {
  font-weight: initial;
}

.titles {
  padding-top: 40px;
  line-height: 1.1;
  display: flex;
  align-items: center;
  color: var(--heading-color);
}

.titles h1 {
  min-width: 500px;
  padding-left: 20px;
  line-height: 0.9;
}

.home h1 {
  width: 500px;
  line-height: 1;
  font-weight: 600;
  font-size: 70px;
}

.home h2 {
  font-size: 1.5em;
  font-weight: 400;
}

.home h3 {
  font-size: 1.1em;
  line-height: 1;
  margin: 5px 0;
}

.home .lecture h3 {
  margin: 10px 0;
}

.titles p {
  color: #5d5d5d;
  padding-top: 5px;
  font-weight: 600;
}

.titles .description {
  font-size: 1.4em;
  line-height: 1.2;
}

.titles .description h2 {
  font-weight: 700;
  font-size: 1.3em;
}

section {
  padding: 40px 0;
}
section .first-element {
  max-width: 700px;
  margin-bottom: 20px;
}

section.our-team .home-btn-link {
  margin-top: auto;
}

.home-table-grid {
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  display: grid;
  grid-gap: 20px;
}

.home-table-grid p {
  font-size: 18px;
  line-height: 22px;
}

.home-table-grid > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-table-grid > div:first-child {
  grid-row: 1 / span 2;
}

.home-table-grid > div:first-child img {
  width: 100%;
  height: 250px;
}

.home-table-grid img {
  width: 230px;
  height: 140px;
  object-fit: cover;
  border-radius: 5px;
}

.home-btn-link {
  font-size: 14px;
  max-width: 250px;
  height: 45px;
  border: 1px solid #ffdb55;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: background-color 0.2s ease-in-out;
}

.btn-link {
  font-size: 14px;
  max-width: 250px;
  height: 45px;
  border: 1px solid #ffdb55;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: background-color 0.2s ease-in-out;
}

form .home-btn-link {
  cursor: pointer;
  width: 150px;
  background-color: white;
}

.home-btn-link:hover {
  background-color: #ffdb55;
}

.home-table-grid-2 > div {
  display: flex;
}

.home-table-grid-2 > div > div {
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-table-grid-2 > div .therapists {
  display: grid;
  padding: 0;
  grid-template-columns: 300px 300px;
  grid-gap: 0px 20px;
}
.home-table-grid-2 > div .therapists h4 {
  font-size: 1.5em;
}

.home-table-grid-2 > div .therapists h5 {
  font-size: 1.2em;
  font-weight: 400;
  color: #0281a3;
}

.home-table-grid-2 > div .therapists img {
  height: 220px;
  object-fit: cover;
  border-radius: 3px;
}

.home-table-grid-2 img {
  width: 450px;
}

.home .lectures iframe {
  height: 250px;
}

.home .lecture {
  margin: 0;
}

.recommendations h3,
.articles h3 {
  margin-bottom: 20px;
}

.recommendations > div,
.articles > div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 35px 15px;
}

section.articles h4 {
  font-size: 22px;
}

section.articles p {
  font-size: 18px;
}

section > h2 {
  margin-bottom: 20px;
}

.articles > div img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.recommendations > div > div {
  background-color: #f5f5f5;
  padding: 40px;
}
.recommendations > div > div i {
  font-size: 2em;
  margin-bottom: 5px;
}

.section-mail {
  border: 2px solid #0281a3;
  display: flex;
  border-radius: 2px;
  padding: 0;
}

.section-mail .mail-text {
  background-color: #0281a3;
  font-size: 32px;
  color: white;
  padding: 45px 60px;
  font-weight: 700;
  width: 410px;
  line-height: 1.1;
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 8% 100%, 0 50%);
  margin-left: 20px;
}

.mail-text > div {
  font-weight: 100;
}

.section-mail > div:nth-of-type(2) {
  flex: 1;
  direction: rtl;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.heading {
  color: #0281a3;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-mail input[type="email"] {
  width: 100%;
  max-width: 400px;
  font-size: 18px;
  padding: 10px 15px;
  background-color: #f5f5f5;
  border: 0;
  height: 40px;
  display: flex;
  align-items: center;
  text-align: right;
}

.section-mail br,
form br {
  display: none;
}

.mail-send {
  display: flex;
  margin-bottom: 10px;
}

.section-mail input[type="submit"] {
  max-width: 250px;
  height: 40px;
  border: 1px solid #ffdb55;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  transition: background-color 0.2s ease-in-out;
  width: 140px;
  margin-right: 10px;
  background-color: white;
  outline: none;
  cursor: pointer;
  font-size: 16px;
}

.section-mail input[type="submit"]:hover {
  background-color: #ffdb55;
}

.screen-reader-response {
  display: none;
}

.wpcf7-validation-errors,
.wpcf7-not-valid-tip {
  color: red;
  direction: ltr;
  text-align: right;
  display: block;
  border: 1px solid #ff0000 !important;
  font-size: 14px !important;
}

div.wpcf7-response-output.wpcf7-response-output {
  margin: 1em 0.5em 1em;
}

form.sent > *:not(.wpcf7-mail-sent-ok) {
  display: none;
}

form div.wpcf7-mail-sent-ok {
  border: 0;
}

.wpcf7-mail-sent-ok {
  font-size: 30px;
  text-align: center;
}

.article-content {
  display: flex;
  padding-top: 30px;
}

.article-content li {
  margin: 15px 0;
}

.article-content iframe {
  width: 100%;
}

.article-content ul {
  list-style: disc;
  padding-right: 20px;
}

.article-content img {
  width: 100%;
  height: auto;
}

.article-text > * {
  margin-bottom: 20px;
}

.article-text {
  flex: 1;
  line-height: 1.5;
}

body.single-treatments .article-text *:not(.share) > a,
body.single-articles .article-text *:not(.share) > a,
body.single-diagnoses .article-text *:not(.share) > a {
  color: rgb(0, 0, 238);
  text-decoration: underline;
}

.article-text h1 {
  font-weight: 100;
  font-size: 50px;
  line-height: 1;
}

.form {
  width: 330px;
  margin-right: 3%;
}

.mega-menu-open .form {
  visibility: hidden;
}

.title-and-share,
.date-location-and-share {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.title-and-share a {
  color: var(--heading-color);
}

.date-location-and-share {
  align-items: center;
}

.share {
  display: flex;
  width: 130px;
  justify-content: space-around;
  font-size: 20px;
  color: #0281a3;
}

.share a {
  color: #0281a3;
  display: inline-block;
  margin: 0 3px;
}

.article-content .form {
  align-self: start;
  position: sticky;
  top: 140px;
  border: 1px solid #0281a3;
  padding: 20px;
}

.article-content form {
  direction: rtl;
  line-height: 1.2;
  font-size: 18px;
}
.article-content form input {
  margin: 10px 0;
  font-size: 16px;
}
.article-content form input[type="text"],
.article-content form input[type="tel"],
.article-content form input[type="email"] {
  display: block;
  font-size: 1em;
  width: 100%;
  padding: 8px 5px;
  border: 1px solid #d6d6d6;
  margin: 0 0 20px;
  direction: rtl;
}

label.checkbox {
  padding-right: 26px;
  display: block;
  font-size: 13px;
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
  max-width: 300px;
}

.wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column-reverse;
}

label.checkbox.checked::before {
  content: "✔";
}

label.checkbox span {
  display: none;
}

label.checkbox::before {
  content: "";
  width: 20px;
  display: inline-block;
  height: 20px;
  position: absolute;
  top: 3px;
  right: 0;
  border: 1px solid #d6d6d6;
  color: #0281a3 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

input[type="checkbox"] {
  display: none;
}

label.upload-file {
  display: inline-block;
  border: 1px solid;
  color: #0281a3;
  padding: 8px;
  margin-bottom: 15px;
}

.article-content form textarea {
  display: block;
  width: 100%;
  font-family: inherit;
  font-size: 1em;
}
.form-title {
  color: #0281a3;
  font-size: 1.2em;
}

.form-text {
  color: #0281a3;
}

.required-text {
  font-size: 0.9em;
  margin: 10px 0;
  color: #7c7c7c;
}

.similar-articles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  margin-bottom: 30px;
}

.similar-articles-container {
  background-color: #f5f5f5;
  padding: 30px;
  margin-top: 30px;
}

.similar-articles-container > div {
  max-width: 1200px;
  margin: 0 auto;
}

.similar-articles-container h3 {
  margin-bottom: 20px;
}

.similar-articles-container h4 {
  font-size: 1.2em;
}

.similar-articles-container p {
  font-size: 14px;
}

.similar-articles img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.breadcrumb {
  display: flex;
  justify-content: flex-end;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 10px;
  flex-direction: row-reverse;
}

.breadcrumb > * {
  margin-left: 5px;
}

.breadcrumb > *:nth-child(1) {
  font-weight: 700;
}

/* treatment-template */
.treatments-template .form,
.post-type-archive-treatments .form {
  margin-right: 15px;
}

.treatment-template .titles h1 {
  margin-bottom: 10px;
}

.treatments-template .breadcrumb-container,
.treatments-template .titles-container,
.post-type-archive-treatments .breadcrumb-container,
.post-type-archive-treatments .titles-container,
.post-type-archive-diagnoses .breadcrumb-container,
.post-type-archive-diagnoses .titles-container,
.post-type-archive-therapists .breadcrumb-container,
.post-type-archive-therapists .titles-container,
.post-type-archive-articles .breadcrumb-container,
.post-type-archive-articles .titles-container,
.page-id-363 .breadcrumb-container,
.page-id-363 .titles-container {
  background-color: #f6f6f6;
}

.treatment-template .titles,
.treatment-template .description,
.post-type-archive-articles .titles,
.post-type-archive-articles .description {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.post-type-archive-articles .content {
  display: flex;
}

.post-type-archive-articles .article-filters {
  display: flex;
  flex-direction: column;
  width: 150px;
  margin-left: 10px;
}

.post-type-archive-articles .article-filters button {
  height: 90px;
  font-family: inherit;
  margin-bottom: 5px;
  background: transparent;
  border: 1px solid;
  color: #ababab;
  transition: all 0.2s ease-in-out;
}

.post-type-archive-articles .article-filters button:hover,
.post-type-archive-articles .article-filters button.active {
  font-weight: 700;
  color: #0281a3;
}

.post-type-archive-articles .article-content img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.post-type-archive-articles .children {
  flex: 1;
}

.treatment-template .description {
  font-size: 18px;
  padding-bottom: 50px;
}
.treatment-template .content {
  display: flex;
}
.treatment-template .article-content {
  width: 100%;
  padding-bottom: 70px;
}

.treatment-template .children {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 15px;
  grid-auto-rows: 150px;
}

.treatment-template .children a {
  background-color: #cbe1ef;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  text-align: center;
  font-weight: 600;
  border-radius: 3px;
  transition: all 0.2s ease-in-out;
  font-size: 18px;
}

.treatment-template .children a:hover {
  background-color: #b2c8d6;
}

/* contact-us */

.contact-us form > p {
  max-width: 390px;
}

.contact-us .article-content form textarea {
  margin-top: 20px;
}

.contact-us .form {
  margin: unset;
  width: 480px;
  font-size: 18px;
  margin-left: 50px;
  border: none;
  padding: 0 0 50px 0;
}

.contact-us .form .form-title,
.contact-us .form .form-text {
  font-size: 1.7em;
}

.contact-us .article-content {
  justify-content: space-between;
  padding-top: 0;
}

.contact-us .article-text {
  width: 400px;
  flex: unset;
}

.talk-cube > * {
  margin-bottom: 30px;
  font-size: 20px;
  color: #7c7c7c;
}

.talk-cube .title.title {
  color: #0281a3;
  font-size: 1.6em;
  position: relative;
}

.talk-cube a {
  text-decoration: none;
  color: #7c7c7c;
}

.talk-cube i {
  font-size: 1.6em;
  margin-left: 5px;
  margin-right: 5px;
}

.contact-us .talk-cube {
  align-self: end;
  padding: 50px 10px;
  text-align: center;
  flex-direction: column;
  display: flex;
  background-color: #f5f5f5;
}

.contact-us .title {
  color: #0281a3;
  font-size: 2em;
  position: relative;
}

.contact-us .title::after {
  content: "";
  position: absolute;
  top: calc(100% + 5px);
  width: 30%;
  height: 1px;
  background-color: #0281a3;
  left: 35%;
}

.contact-us h1 {
  line-height: 1;
}

/* Treatements Groups */
.single-treatment_groups .date {
  display: inline-block;
  margin-left: 10px;
}
.single-treatment_groups h1 {
  font-weight: 100;
  font-size: 50px;
  line-height: 1;
}

/* post-type-archive-treatment_groups */

.post-type-archive-treatment_groups h1 {
  font-weight: 100;
}
.post-type-archive-treatment_groups h2 {
  font-size: 30px;
  line-height: 1.1;
}

.post-type-archive-treatment_groups .content > p {
  margin-bottom: 10px;
}

.treatments-groups {
  background-color: #f5f5f5;
  padding: 30px;
  margin-bottom: 70px;
}

.treatments-groups .month-filter {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.month-filter > div {
  display: flex;
}

.treatments-groups .month,
.treatments-groups .day {
  border: 0;
  width: 40px;
  height: 40px;
  background-color: transparent;
  display: flex;
  align-items: center;
  font-size: 14px;
  justify-content: center;
  margin-left: 10px;
  border-radius: 50%;
  transition: all 0.1s ease-in-out;
  flex-direction: column;
}

.treatments-groups .day .day-name {
  margin-bottom: 5px;
}

.treatments-groups .day .day-num {
  color: #7c7c7c;
}

span.month,
span.day {
  cursor: pointer;
}

.treatments-groups button.month.active,
.treatments-groups button.month:hover {
  background-color: #0281a3;
  color: white;
}

.treatments-groups button.day.active,
.treatments-groups button.day:hover {
  font-weight: 700;
}

.group {
  display: flex;
  padding: 20px;
  background-color: white;
  margin: 5px 0;
}

a.group {
  color: inherit;
  text-decoration: none;
}

.group .title {
  margin-left: auto;
}

.post-type-archive-treatment_groups .date {
  display: inline-block;
  margin-left: 10px;
}

.page-id-401 .breadcrumb-container,
.page-id-401 .titles-container {
  background-color: #f6f6f6;
}
.page-id-401 .titles-container {
  padding: 0 0 40px 0;
}

.page-id-401 .titles,
.page-id-401 .description {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.page-id-401 .titles h1 {
  margin-bottom: 10px;
}

.files-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
}

.files-group a {
  display: flex;
  padding: 20px;
  background-color: #cbe1ef;
  border-radius: 3px;
  font-size: 18px;
  align-items: center;
  text-decoration: none;
  color: black;
}

.files-group .icon {
  font-size: 1.4em;
  margin-left: 10px;
}

/* FAQ PAGE */

.page-id-439 .article-content summary {
  font-size: 20px;
  background-color: #f5f5f5;
  position: relative;
  padding: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.page-id-439 .article-content details p {
  margin: 10px;
}

.page-id-439 .article-content summary::after {
  content: "+";
  font-size: 30px;
  line-height: 0;
  margin-right: auto;
  color: #0281a3;
}

.page-id-439 .article-content summary::-webkit-details-marker {
  display: none;
}

.page-id-439 .article-content details[open] summary {
  font-weight: 700;
}

.page-id-439 .article-content details[open] summary::after {
  content: "-";
}

.page-id-439 .article-text > * {
  margin-bottom: 10px;
}

/* therapist post */

.single-therapists .therapist-details-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}

.single-therapists .therapist-details-container img {
  width: 550px;
  object-fit: cover;
  border-radius: 5px;
  height: 350px;
}

.single-therapists .therapist-details {
  flex: 1;
}

.single-therapists .details {
  background-color: #f6f6f6;
  padding: 30px 0;
  position: relative;
}

.single-therapists .details > p {
  color: #0281a3;
  font-weight: 600;
  font-size: 22px;
}

.details h1 {
  font-weight: 100;
  font-size: 40px;
}

.single-therapists .details::after {
  content: "";
  position: absolute;
  width: 500px;
  top: 0;
  height: 100%;
  left: 100%;
  background-color: #f6f6f6;
}

.single-therapists .therapist-details .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 15px;
  font-size: 14px;
  grid-gap: 30px;
  padding-right: 10px;
}

.single-therapists .grid > div {
  position: relative;
}

.single-therapists .grid > div::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #ffe173;
  right: -10px;
}

.single-therapists h3 {
  font-size: 1.3em;
}

.single-therapists .quote {
  position: relative;
  padding: 26px;
  color: #7c7c7c;
}

.single-therapists .therapist-details i {
  font-size: 24px;
  position: absolute;
  top: 14px;
  right: 0;
  font-weight: 700;
  color: #0281a3;
}

.single-therapists .content-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  margin-bottom: 50px;
}

.single-therapists .content {
  flex: 1;
  padding: 0 0 0 100px;
}

.single-therapists .content ul {
  list-style: disc;
  padding: 0 20px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.single-therapists .content > * {
  padding-bottom: 10px;
}

.single-therapists .content > p {
  padding-bottom: 20px;
}

.single-therapists .contact {
  width: 550px;
  display: flex;
  padding: 20px;
  border: 1px solid #0281a3;
  align-self: flex-start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.contact-details img {
  width: 80px;
  margin: 20px 0 -10px 0;
}

.contact-details .license {
  color: #0281a3;
  text-decoration: underline;
}

.clinic-details {
  width: 300px;
}

.clinic-details h4 {
  margin-bottom: 5px;
}

.contact-details > * {
  display: flex;
  align-items: center;
  margin: 0 0 0 5px;
}

h4 {
  color: #0281a3;
  font-weight: 100;
  font-size: 1em;
}

/* Lectures */
.lectures {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 8px;
  margin-bottom: 20px;
}

.lectures iframe {
  width: 100%;
  height: auto;
  border: 0;
}

.lectures h2 {
  font-size: 1em;
  line-height: 1;
  margin-bottom: 10px;
}

.page-id-470 .titles-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-id-470 .form {
  margin-right: 20px;
}

.bottom-line {
  padding: 10px 0;
  border-bottom: 1px solid #0281a3;
}

.date-filter {
  cursor: pointer;
}

.date-filter:not(.reverse) .fa-angle-up {
  display: none;
}

.date-filter.reverse .fa-angle-down {
  display: none;
}

.filters {
  margin-bottom: 20px;
}

.groups {
  display: flex;
  flex-direction: column;
}

.groups.reverse {
  flex-direction: column-reverse;
}

.day-filter {
  display: flex;
}

.day-buttons-container {
  overflow: hidden;
  max-width: 600px;
}

.day-buttons-container > div {
  display: flex;
  width: fit-content;
}

.arrow {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin: 0 10px 0 20px;
  color: #0281a3;
}

/* Join-Us */

.page-id-538 h1 {
  margin-top: -20px;
  margin-bottom: 20px;
}

.works-container {
  background-color: #f5f5f5;
  padding: 20px;
}

.works-container h3 {
  margin-bottom: 10px;
}

.works-container .works {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5px;
}

.works-container .works > a {
  background-color: white;
  padding: 10px 20px;
  color: black;
  text-decoration: none;
}

.reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  padding: 50px 0;
  grid-gap: 60px 30px;
  font-size: 18px;
}

.reasons .reason {
  background-color: whitesmoke;
  padding: 30px 40px;
  position: relative;
}

.reason h4 {
  font-size: 1.3em;
}

.reasons i {
  font-size: 50px;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 0;
  left: 50%;
  color: var(--heading-color);
}

.work-recommendations-container h3 {
  margin-bottom: 30px;
}

.work-recommendations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
}

.work-recommendations > div {
  background-color: #f5f5f5;
  padding: 40px;
}

.work-recommendations > div i {
  font-size: 2em;
}

/* Join Us */

.join-us-template h1 {
  margin-top: -20px;
  margin-bottom: 20px;
}
.join-us-template ul {
  list-style-type: disc;
  padding-right: 20px;
}

.join-us-template .article-text > * {
  margin-bottom: 10px;
}

.join-us-file-input {
  display: none;
}

/* Slick */

.slick-slide.slick-slide {
  height: 300px;
  object-fit: cover;
  margin-left: 10px;
  z-index: -1;
}

.slick-prev.slick-prev,
.slick-next.slick-next {
  width: 50px;
  height: 50px;
  top: 100%;
  background-image: url("./assets/arrow.png") !important;
  background-size: cover;
}

.slick-prev.slick-prev {
  left: 50px;
  z-index: 1;
}

.slick-next.slick-next {
  left: 50px;
  right: unset;
  display: none !important;
}

.slick-next.slick-next:before {
  content: "←";
}

.slick-prev:before,
.slick-next:before {
  font-family: initial !important;
}

.slick-prev:before,
.slick-next:before {
  display: none;
}

/* Clinic */

.page-template-template-clinic-rent .breadcrumb-container,
.page-template-template-clinic .breadcrumb-container {
  background-color: #f6f6f6;
}
.clinic-template .h1-container {
  background-color: #f6f6f6;
}

.clinic-template h1 {
  max-width: 1200px;
  margin: -20px auto 0 auto;
  font-size: 50px;
  font-weight: 100;
  padding-bottom: 15px;
}

.slider-container {
  background-image: linear-gradient(
    180deg,
    #f6f6f6 0%,
    #f6f6f6 50%,
    white 50%,
    white 100%
  );
}

.slider-class {
  z-index: 0;
  margin-bottom: 20px;
  width: calc(1200px + (100% - 1200px) / 2);
  margin-right: calc((100% - 1200px) / 2);
}

.address a {
  color: #0281a3;
  text-decoration: underline;
  display: inline-block;
  margin-right: 5px;
}

.includes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 15px;
}

.includes-item {
  display: flex;
}

.includes-icon-container {
  color: #0281a3;
  flex: 0 70px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  font-size: 24px;
}

.includes-text {
  display: flex;
  padding-right: 10px;
  align-items: center;
  flex: 1;
  font-size: 14px;
  max-width: 130px;
}

.price {
  display: flex;
}

.price h2 {
  display: flex;
  line-height: 1;
  margin-left: 10px;
}

.questions {
  display: flex;
  align-items: center;
  font-size: 25px;
  position: relative;
}

.questions i {
  transform: translateY(3px);
  color: #0281a3;
  cursor: pointer;
  z-index: 1;
}

.questions-details {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  font-size: 16px;
  background-color: #cbe1ef;
  padding: 10px;
  width: 400px;
  right: -85px;
  animation: slide-down 0.2s both;
  clip-path: polygon(
    0% 6%,
    73.5% 6%,
    76% 0%,
    78.5% 6%,
    100% 6%,
    100% 100%,
    0% 100%
  );
}
.questions-details ul {
  padding: 15px 40px 15px 15px;
  list-style: initial;
}

.questions-details.show {
  display: flex;
}

.prices {
  display: flex;
}
.prices > * {
  background-color: #f5f5f5;
  border-radius: 5px;
  padding: 20px 30px;
  text-align: center;
}

.part-price-flex {
  display: flex;
  width: 180px;
  justify-content: space-around;
}

.whole {
  display: flex;
  flex-direction: column;
}

.whole h3 {
  flex: 1;
}

.part {
  flex: 1;
  margin-right: 15px;
}
.part-prices {
  display: flex;
  margin-top: 10px;
}

.part-price {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.part-price:not(:last-of-type) {
  border-left: 1px solid #0281a3;
}

.part-price h4 {
  font-size: 16px;
}
.nis-price {
  margin-top: auto;
  padding-top: 20px;
  font-size: 18px;
  font-weight: 700;
}

.nis-price span {
  display: inline-block;
}

/* therapists */
.therapists-template .children {
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: unset;
}

.therapists-template .children h3 {
  font-size: 1.2em;
}

.therapists-template .children a {
  width: 160px;
  background-color: transparent;
  border: 1px solid #ffdb55;
  font-weight: 100;
  transition: all 0.1s ease-in-out;
  max-width: 100%;
  margin-top: 20px;
}

.therapists-template .children a:hover {
  background-color: #ffdb55;
}

.therapists-template .article-content img {
  width: 350px;
  object-fit: cover;
  height: 230px;
}

/* 404 */
.error404 .content {
  max-width: 500px;
  margin-top: 50px;
  text-align: center;
}

.error404 .content > img {
  max-width: 200px;
}

.error404 h1 {
  font-size: 36px;
  line-height: 1;
  font-weight: 100;
  margin-top: 30px;
}

.error404 .links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
  margin-top: 20px;
  padding-bottom: 140px;
}

.error404 .links > a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  border: 1px solid #ffdb55;
  transition: all 0.1s ease-in-out;
}

.error404 .links > a:hover {
  background-color: #ffdb55;
}

/* rental-of-clinics page */

.page-id-587 h1 {
  font-size: 50px;
  font-weight: 100;
  margin-bottom: 10px;
}

.clinics-for-rent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  margin-bottom: 40px;
}

.clinics-for-rent .address {
  margin-bottom: -10px;
  line-height: 1.2;
}

.clinics-for-rent .area {
  font-size: 1.3em;
}

.clinics-for-rent .city {
  font-weight: 700;
}

.clinics-for-rent .street {
  font-size: 0.9em;
}

.clinics-for-rent .clinic-btn {
  width: 160px;
  background-color: transparent;
  border: 1px solid #ffdb55;
  font-weight: 100;
  transition: all 0.1s ease-in-out;
  max-width: 100%;
  margin-top: 20px;
  padding: 10px 30px;
}

.clinics-for-rent a:hover {
  background-color: #ffdb55;
}

.whys {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 15px;
  margin-top: 50px;
}

.why {
  background-color: #f5f5f5;
  padding: 0 20px;
  text-align: center;
}

.why > i {
  font-size: 60px;
  color: #0281a3;
  margin: 0 auto;
  display: block;
  text-align: center;
  transform: translateY(-50%);
}

.images {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 20px 0;
}

.images > img {
  display: inline-block;
  height: auto;
  width: 90px;
  object-fit: contain;
}

/* page-template-template-our-clinics */
.page-template-template-our-clinics .breadcrumb-container,
.page-template-template-our-clinics .titles-container {
  background-color: #f6f6f6;
}
.page-template-template-our-clinics h1 {
  font-size: 70px;
  font-weight: 100;
}

.page-template-template-our-clinics .titles-container > div {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
}

/* articles-archive */
.articles-archive .children {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px 15px;
  line-height: 1.2;
  font-size: 14px;
  padding-bottom: 60px;
  align-self: flex-start;
}

.articles-archive .description {
  padding-bottom: 30px;
}

.articles-archive .children h2 {
  font-size: 1.4em;
}

/* About page */
.page-id-363 .article-text > *:not(.title-and-share) a {
  font-size: 14px;
  max-width: 250px;
  height: 45px;
  border: 1px solid #ffdb55;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: background-color 0.2s ease-in-out;
}

.page-id-363 .article-text > *:not(.title-and-share) a:hover {
  background-color: #ffdb55;
}

.page-id-363 .recommendations > div {
  grid-template-columns: 1fr 1fr;
}

.page-id-363 .titles-container > div {
  max-width: 1200px;
  margin: 0 auto;
}

.page-id-363 .titles-container {
  padding-bottom: 40px;
}

.page-id-363 .titles {
  padding: 0 0 20px;
}

.page-id-363 .content {
  display: flex;
}

/* footer */

footer {
  padding: 40px;
  font-size: 16px;
  margin-top: 50px;
}

#menu-footer-menu {
  color: white;
  display: flex;
}

#menu-footer-menu,
#menu-footer-menu ul {
  list-style: none;
}

#menu-footer-menu > li > .sub-menu {
  display: flex;
  flex-direction: column;
}

#menu-footer-menu .sub-menu li {
  padding: 3px 0px 0 40px;
  align-self: flex-start;
  position: relative;
}

#menu-footer-menu .sub-menu .menu-item-has-children > a {
  position: relative;
  display: inline-block;
}

#menu-footer-menu .sub-menu .menu-item-has-children > a::after {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  left: -12px;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: rotate(45deg);
  transform-origin: 0 0;
  top: 5px;
}

#menu-footer-menu
  .sub-menu
  .menu-item-has-children.sub-menu-is-open
  > a::after {
  transform: rotate(-135deg);
  top: 16px;
}

#menu-footer-menu .sub-menu {
  display: none;
}

#menu-footer-menu li.sub-menu-is-open > .sub-menu {
  display: flex;
  flex-direction: column;
}

.with-underline > a {
  border-bottom: 1px solid;
  padding-left: 10px;
}

.footer-links {
  max-width: 1200px;
  margin: 0 auto 20px auto;
  display: flex;
  padding-bottom: 20px;
  border-bottom: 2px dashed white;
}

.footer-mail-social {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.footer-mail {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  text-align: right;
}

.footer-mail label.checkbox {
  max-width: 380px;
  margin-left: auto;
}

.footer-mail .wpcf7 input[type="email"] {
  font-size: 20px;
}

.footer-mail input[type="submit"] {
  max-width: 250px;
  height: 40px;
  border: 1px solid #ffdb55;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  transition: background-color 0.2s ease-in-out;
  width: 140px;
  margin-right: 10px;
  background-color: white;
  outline: none;
  cursor: pointer;
  font-size: 16px;
}

.footer-mail .mail-text {
  font-size: 20px;
  color: #0281a3;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-mail .mail-send {
  display: flex;
  text-align: right;
  direction: rtl;
}

.footer-mail .mail-send label span {
  height: 100%;
  display: flex;
}

.footer-mail .mail-send label span input {
  display: block;
  height: 100%;
}

.we-are-here-container {
  display: flex;
  flex-direction: column;
  margin-right: 20px;
  color: white;
  font-size: 18px;
}

.we-are-here-container a {
  font-size: 14px;
}

.we-are-here-container > * {
  margin-bottom: 5px;
}

.footer-social {
  color: white;
  font-size: 24px;
  margin-right: 30px;
}

.footer-social > div {
  font-size: 18px;
  margin-bottom: 5px;
}

.we-are-here-container i {
  font-size: 0.7em;
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.trail-line {
  background: linear-gradient(0.25turn, #3f87a6, #ebf8e1);
  background-size: 100vw, 100vw;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
  direction: rtl !important;
}

.mega-menu-3 > .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  right: 250px;
  grid-template-columns: 1fr 1fr;
  min-width: 1000px;
  padding-left: 230px;
  padding-top: 10px;
  background-color: whitesmoke;
  padding-bottom: 30px;
}

li.mega-menu-3 > .sub-menu {
  display: none;
}

.mega-menu-3.mega-menu-active > .sub-menu {
  display: grid;
  animation: slide-in-right 0.5s ease-in-out;
}

.mega-menu-3.mega-menu-active > .sub-menu li a {
  display: flex;
  flex-direction: column;
}

.mega-menu-3.mega-menu-active > .sub-menu li a img {
  height: 190px;
  padding: 0;
  margin-bottom: 10px;
  border-radius: 3px;
}

.mega-menu-3.mega-menu-active > .sub-menu::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 5000px;
  height: 100%;
  background-color: whitesmoke;
  z-index: -1;
}

@media only screen and (max-width: 1200px) {
  .page-menu-1 .sub-menu {
    width: 600px;
  }

  .mega-menu-1 .grid-four-rows .sub-menu {
    width: 600px;
  }

  .mega-menu-3 > .sub-menu {
    min-width: unset;
    width: 100vw;
    left: 0;
    right: unset;
    padding: 30px;
  }

  .mega-menu-3:hover > .sub-menu::after {
    display: none;
  }

  .article-content .form {
    position: relative;
    top: unset;
  }
}

.accessibility_component.accessibility_div_wrap {
  display: block !important;
}

.lwptoc_i.lwptoc_i {
  text-align: right;
}

.lwptoc_itemWrap {
  padding: 0 28px 0 0;
}

.lwptoc-light .lwptoc_i.lwptoc_i {
  background: #f7f7f7;
  width: 100%;
}

.writer-data {
  display: flex;
  align-items: center;
  gap: 0 5px;
  font-size: 16px;
  color: #adadad;
  margin: 0;
}

.writer-data img {
  width: 40px;
  border: 3px solid #c5c5c5;
  border-radius: 50%;
  height: 40px;
  object-position: center;
}

.lwptoc.lwptoc {
  margin: 20px 0;
}

.mobile .writer-data {
  gap: 0 2px;
  font-size: 14px;
  line-height: 1.2;
}

.fa-print {
  margin-right: auto;
  font-size: 20px;
  cursor: pointer;
}

@keyframes slide-in-right {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

.wp-caption {
  max-width: 100%;
}

@media print {
  header,
  .form,
  .share,
  .lwptoc,
  .accessibility_component.accessibility_div_wrap,
  .similar-articles-container,
  .fa-print,
  .mobile-contact-buttons,
  footer {
    display: none !important;
  }

  body,
  h1,
  h2,
  h3,
  ol,
  ul,
  div {
    width: auto !important;
    border: 0 !important;
    padding: 0 !important;
    float: none !important;
    position: static !important;
    overflow: visible !important;
  }

  .article-text img {
    max-width: 40% !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .writer-data img {
    max-width: unset !important;
  }
}
