/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600&display=swap');

/* END FONTS */

/* Header */

a:hover {
  color: #000000;
  text-decoration: none;
}
a {
  font-family: 'Manrope', sans-serif;
}

.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1580px;
  margin: 70px auto 0;
  padding-left: 0;
  padding-right: 0;
}

.header__title {
  width: 780px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 64px;
  text-align: start;
}

.header__logo-container {
  width: 234px;
  height: 60px;

}

.header__logo-container img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1300px) {
  .header {
    flex-direction: column-reverse;
    max-width: 940px;
  }

  .header__title {
    font-size: 40px;
    line-height: 52px;
    width: 630px
  }
}

@media (max-width: 970px) {
  .header {
    max-width: 440px;
  }

  .header__title {
    width: 440px;
    font-size: 28px;
    line-height: 38px;
  }
}

@media (max-width: 480px) {
  .header {
    max-width: 340px;
  }

  .header__title {
    width: 330px;
  }
}

/* Header */

/* Nominations */

.nominations {
  display: flex;
  flex-direction: column;
  max-width: 1580px;
  margin: 50px auto 0;
  justify-content: space-between;
}

.nominations__navigation-container {
  display: flex;
  flex-direction: column-reverse;
}

.nominations__navigation {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 0;
  list-style: none;
  gap: 10px;
  padding-left: 0;
}

.nominations__navigation-item {
  border: 1px solid #000000;
  border-radius: 20px;
  font-family: 'Manrope', sans-serif;
  background-color: #ffffff;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  padding: 11px 15px;
  text-transform: uppercase;
  width: fit-content;
  height: 40px;
  transition: all 0.5s ease;
}

.nominations__navigation-item:hover {
  background-color: #BBE8B1;
  cursor: pointer;
}

.nominations__navigation-item_special {
  background-color: #D2B3F6;
  width: 230px;
  height: 40px;
  text-align: start;
  position: relative;
  transition: all 0.5s ease;
}

.nominations__navigation-item_special::after {
  content: " ";
  background: url(../../../uploads/media/img/doctor/arrow-right.svg) no-repeat center;
  width: 24px;
  height: 24px;
  display: inline-block;
  right: 15px;
  top: 8px;
  position: absolute;
}

.nominations__navigation-item_add {
  width: 280px;
  position: relative;
  text-align: start;
}

.nominations__navigation-item_add::after {
  content: " ";
  background: url(../../../uploads/media/img/doctor/plus.svg) no-repeat center;
  width: 24px;
  height: 24px;
  display: inline-block;
  right: 15px;
  top: 8px;
  position: absolute;
}

.nominations__navigation-item_add-form {
  width: 160px;
  position: relative;
  text-align: start;
  background-color: #ADE6F7;
}

.nominations__navigation-item_add-form::after {
  content: " ";
  background: url(../../../uploads/media/img/doctor/plus.svg) no-repeat center;
  width: 24px;
  height: 24px;
  display: inline-block;
  right: 15px;
  top: 8px;
  position: absolute;
}

.nominations__navigation-item_special:hover {
  background-color: #BBE8B1;
}

.nominations__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 64px;
  color: #000000;
}

.nominations__doctors-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
}

.nominations__doctor-item {
  width: 50%;
}

.nominations__image-container {
  width: 100%;
  height: auto;
  position: relative;
}

.nominations__doctor-item h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
}

.nominations__image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.nominations__button {
  position: absolute;
  border: 1px solid #000000;
  background-color: #ADE6F7;
  border-radius: 20px;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  text-transform: uppercase;
  padding: 11px 54px;
  width: fit-content;
  height: 40px;
  transition: all 0.5s ease;
}

.nominations__button:hover {
  background-color: #BBE8B1;
}

.nominations__description {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: start;
  margin-top: 10px;
}

@media (max-width: 1300px) {

  .nominations__doctor-item h3 {
    font-size: 18px;
  }

  .nominations__button {
    bottom: 11px;
    left: 35px;
  }

  .nominations__title {
    margin-bottom: 30px;
  }
}

@media (max-width: 970px) {
  .nominations__doctors-container {
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }

  .nominations__doctor-item {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .nominations__navigation-item {
    padding: 5px 15px;
    font-size: 14px;
    line-height: 18px;
  }

  .nominations__navigation-item_add {
    width: 280px;
    position: relative;
    text-align: start;
    padding: 11px 15px;
    font-size: 18px;
  }

  .nominations__navigation-item_special {
    font-size: 18px;
  }

  .nominations__title {
    margin-top: 20px;
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 30px;
  }

  .nominations__doctor-item h3 {
    margin-bottom: 20px;
    margin-top: 0;
  }

  .nominations__image-container {
    width: 300px;
    height: 388px;
  }

  .nominations__button {
    bottom: 10px;
    left: 35px;
  }

  .nominations__doctor-item {
    width: 300px;
  }
}

/* Nominations */

/* About */

.about {
  margin: 200px auto 0;
}

.about__block {
  display: flex;
  flex-direction: row;
  gap: 100px;
}

.about__button {
  position: relative;
  display: inline-block;
}

.about__description {
  font-family: 'Manropte', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
}

.about__time {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: #000000;
}

.about__buttons-container {
  display: flex;
  flex-direction: row;
}

.about__button-participate {
  position: relative;
  display: inline-block;

}

.about__image-container img {
  width: 700px;
  height: 344px;
  border: 1px solid #000000;
  border-radius: 20px;
}

.about__button-support {
  position: relative;
  display: inline-block;
  bottom: 0;
  left: 10px;
}

@media (max-width: 1600px) {
  .about {
    margin-top: 150px;
  }

  .about__image-container img {
    width: 668px;
    height: 329px;
  }


  .about__block {
    gap: 66px;
  }
}

@media (max-width: 1300px) {
  .about__image-container img {
    width: 460px;
    height: 226px;    
  }
}

@media (max-width: 970px) {
  .about {
    margin-top: 120px;
  }

  .about__time {
    margin-bottom: 20px;
  }

  .about__image-container img {
    width: 620px;
    height: 304px;
  }

  .about__block {
    flex-direction: column-reverse;
  }

  .about__buttons-container {
    flex-direction: column;
  }

  .about__button-support {
    left: 0;
    top: 20px;
  }
}

@media (max-width: 670px) {
  .about__image-container img {
    width: 440px;
    height: 216px;
  }
}

@media (max-width: 480px) {
  .about__image-container {
    width: 340px;
    height: 170px;
  }

  .about__time {
    margin-top: 40px;
    text-align: center;
    font-size: 18px;
    line-height: 24px;
  }

  .about__description {
    font-size: 14px;
    line-height: 24px;
  }

  .about__buttons-container {
    align-items: center;
  }

  .about__image-container img {
    width: 340px;
    height: 170px;
  }
}

/* About */

/* Author */

.author {
  margin: 200px auto 0;
}

.author__title {
  margin-bottom: 60px;
  display: block;
  margin-left: 640px;
}

.author__block {
  display: flex;
  flex-direction: row;
  gap: 100px;
}

.author__image-container {
  width: 540px;
  height: 700px;
  margin-left: auto;
  margin-right: auto;
}

.author__image {
  max-width: 100%;
  height: auto;
}

.author__socials-block {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  padding-inline-start: 0;
}

.author__description {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #000000;
  text-indent: 20px;
  margin-bottom: 5px;
}

.author__social {
  transition: all 0.5s ease;
}

.author__button {
  margin-top: 20px;
}

@media (max-width: 1300px) {
  .author {
    margin-top: 150px;
  }

  .author__block {
    gap: 20px;
  }


  .author__title {
    font-size: 40px;
    line-height: 52px;
    margin-bottom: 30px;
    margin-top: 0;
    margin-left: 320px;
  }

  .author__image-container {
    width: 300px;
    height: 388px;
  }
}

@media (max-width: 970px) {
  .author {
    margin-top: 120px;
  }

  .author__title {
    margin-left: auto;
    margin-right: auto;
  }

  .author__block {
    flex-direction: column;
  }

  .author__image-container {
    width: 440px;
    height: 570px;
  }

  .about__buttons-container {
    margin-top: 30px;
  }

  .author__button {
    margin-left: 0;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .author {
    align-items: center;
  }

  .author__title {
    font-size: 28px;
    line-height: 38px;
  }

  .author__image-container {
    width: 300px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .author__socials-block {
    padding: 0;
    align-items: center;
  }

  .author__description {
    font-size: 14px;
    line-height: 24px;
  }

  .author__fullread-button {
    padding: 11px 15px;
    font-size: 18px;
    line-height: 18px;
  }

  .author__buttons-container {
    align-items: flex-start;
  }
}


/* Author */

/* Rules */

.rules {
  margin: 200px auto 0;
  border: 1px solid #000000;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  padding: 160px;
  gap: 180px;
}

.rules__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 64px;
  color: #000000;
}

.rules__description {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 30px;
}

@media (max-width: 1600px) {
  .rules {
    gap: 88px;
    margin-top: 150px;
    padding: 76px;
  }
}

@media (max-width: 1300px) {
  .rules {
    padding: 60px;
    gap: 40px;
    margin-top: 120px;
  }
}

@media (max-width: 970px) {
  .rules {
    flex-direction: column;
    padding: 40px 30px;
  }

  .rules__title {
    font-size: 40px;
    line-height: 52px;
    margin-top: 0;
  }

  .rules__description {
    margin-top: 20px
  }
}

@media (max-width: 480px) {
  .rules {
    padding: 30px 20px;
  }

  .rules__title {
    font-size: 28px;
    line-height: 38px;
  }

  .rules__description {
    font-size: 14px;
    line-height: 24px;
  }
}

/* Rules */

/* Prize */

.prize {
  margin: 200px auto 0;
}

.prize__container {
  display: flex;
  flex-direction: row;
  margin-top: 60px;
  gap: 20px;
  flex-wrap: wrap;
}

.prize__block {
  width: 380px;
  margin-left: auto;
  margin-right: auto;
}


.prize__img-container {
  width: 380px;
  height: 492px;

}

.prize__image {
  width: 100%;
  height: auto;
  border: 1px solid #000000;
  border-radius: 20px;
}

.prize__place {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.prize__winnings {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
}

.prize__rules {
  font-family: 'Manrope';
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-top: 40px;
}

@media (max-width: 1600px) {
  .prize {
    margin-top: 150px;
  }

  .prize__block {
    width: 288px;
  }

  .prize__container {
    gap: 16px;
  }

  .prize__img-container {
    width: 288px;
    height: 373px;
  }
}

@media (max-width: 1300px) {
  .prize__block {
    width: 220px;
  }

  .prize__img-container {
    width: 220px;
    height: 285px;
  }
}

@media (max-width: 970px) {
  .prize {
    margin-top: 120px;
  }

  .prize__container {
    margin-top: 30px;
  }

  .prize__img-container {
    width: 440px;
    height: 569px;
  }

  .prize__block {
    width: 440px;
  }
}

@media (max-width: 480px) {
  .prize__img-container {
    width: 300px;
    height: auto;
  }

  .prize__block {
    width: 300px;
  }
}

/* Prize */

/* Contacts */

.contacts {
  margin: 200px auto 200px;
}

.contacts__container {
  display: flex;
  flex-direction: row;
  margin-top: 60px;
  justify-content: space-between;
}

.contacts__contacts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contacts__image-container {
  width: 1020px;
  height: 390px;
}

.contacts__image {
  width: 100%;
  height: auto;
  border: 1px solid #000000;
  border-radius: 20px;
}

.contacts__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
}

.contacts__text {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}

.contacts__text-special {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  text-decoration: underline;
}

@media (max-width: 1600px) {
  .contacts {
    margin-top: 150px;
  }

  .contacts__image-container {
    width: 668px;
    height: 255px;
  }
}

@media (max-width: 1300px) {
  .contacts__image-container {
    width: 540px;
    height: 206px;
  }
}

@media (max-width: 970px) {
  .contacts {
    margin-bottom: 100px;
    margin-top: 120px;
  }

  .contacts__container {
    flex-direction: column-reverse;
    margin-top: 30px;
  }

  .contacts__image-container {
    width: 440px;
    height: 168px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .contacts__image-container {
    width: 340px;
    height: auto;
  }
}

/* Contacts */

/* Modal */

.modal__title {
  font-family: 'Manrope', serif;
  font-weight: 600;
  font-size: 24px;
  padding-top: 30px;
}

/* Modal */

/*Page Rules */

.pageRules {
  max-width: 940px;
}

.pageRules__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 64px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.pageRules__subtitle {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.pageRules__text {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
  padding-inline-start: 15px;
}

.pageRules__block {
  margin-top: 60px;
  margin-bottom: 60px;
}

.pageRules__bold-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
}

.pageRules__button {
  border: 1px solid #000000;
  border-radius: 20px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  padding: 11px 15px;
  text-transform: uppercase;
  width: fit-content;
  height: 40px;
  transition: all 0.5s ease;
  background-color: #ADE6F7;
}

.pageRules__button:hover {
  background-color: #BBE8B1;
}

/* Page Rules */

/* items.php */

.doctor__nominations-block {
  display: flex;
  flex-direction: column;
}

.doctor__nominations-buttons-block {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.nominations__navigation-item_active-doctors,
.nominations__navigation-item_active-specs,
.nominations__navigation-item_active-heroes {
  background-color: #ADE6F7;
  height: 40px;
  width: fit-content;
  padding-right: 50px;
  text-align: start;
  position: relative;
  transition: all 0.5s ease;
}

.nominations__navigation-item_active-doctors::after,
.nominations__navigation-item_active-specs::after,
.nominations__navigation-item_active-heroes::after {
  content: " ";
  background: url(../../../uploads/media/img/doctor/arrow-left-circle.svg) no-repeat center;
  width: 24px;
  height: 24px;
  display: inline-block;
  right: 15px;
  top: 8px;
  position: absolute;
}

/* items.php */

/* Main */
h2.doctor__title {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 900;
  font-size: 48px;
  line-height: 64px;
  margin-bottom: 40px;
  color: #000000;
  text-align: start;
  margin-top: 70px;
}

.doctor-view__title {
  text-align: center;
}

h4 {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 42px;

  letter-spacing: 0.05em;

  color: #000000;
}

.doctor__subtitle {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

.form-group {
  padding: 0;
  margin-top: 0;
  grid-area: image;
}

@media (max-width: 1920px) {
  h2.doctor__title {
    font-size: 48px;
    line-height: 56px;
  }
  h4 {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 992px) {
  h2.doctor__title {
    font-size: 30px;
    line-height: 35px;
  }

  h4 {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 500px) {
  h2.doctor__title {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* END Main */

/* Buttons */
.doctor-button {
  height: 80px;
  width: 304px;
  background-repeat: no-repeat;
  background-color: #fff;
  color: #fff;
  text-transform: uppercase;

  margin: 1rem 0;
}

.doctor-button:hover,
.doctor-button:active {
  color: #fff;
}

.raduga-1 {
  background-image: url("/uploads/media/img/doctor/button-raduga-1.png");
}

.raduga-1:hover {
  background-image: url("/uploads/media/img/doctor/button-raduga-1-hover.png");
}

.raduga-1:active {
  background-image: url("/uploads/media/img/doctor/button-raduga-1-active.png");
  box-shadow: none;
}

.raduga-2 {
  background-image: url("/uploads/media/img/doctor/button-raduga-2.png");
  width: 320px;
}

.raduga-2:hover {
  background-image: url("/uploads/media/img/doctor/button-raduga-2-hover.png");
}

.raduga-2:active {
  background-image: url("/uploads/media/img/doctor/button-raduga-2-active.png");
  box-shadow: none;
}

.blue-doc {
  color: #000;
  border-radius: 20px;
  border: 1px solid #000000;
}

.blue-doc:hover {
  background: #BBE8B1;
  color: #000000;
}

.blue-doc:active {
  background: #d6e3eb;
  border-radius: 60px;
  box-shadow: none;
}

.green-doc {
  background: #05db86;
  border-radius: 60px;
}

.green-doc:hover {
  background: #95e1c3;
  border-radius: 60px;
}

.green-doc:active {
  background: #daeae4;
  border-radius: 60px;
  box-shadow: none;
}

.white-doc {
  background: #fff;
  border: 1px solid #000000;
  color: #000;
  border-radius: 60px;
}

.white-doc:hover {
  background: #fff;
  color: #000;
  border-radius: 60px;
  opacity: 0.3;
}

.white-doc:active {
  background: #fff;
  color: #000;
  border-radius: 60px;
  box-shadow: none;
}

@media (max-width: 992px) {
  .doctor-button {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 60px;
  }
}
/* END Buttons */

/* Menu */
.second-menu--line {
  margin-top: 1rem;
  padding: 0;
}
.second-menu--line::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
}
.second-menu-wrapper {
  padding: 1rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}
.second-menu--logo {
  height: 60px;
  width: 470px;
  background-repeat: no-repeat;
}
.second-menu--burger {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  text-align: right;
}

.nav-toggle__item {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 10px;
  left: 0;
  margin: auto;
  transition: background 0.2s linear;
}

.nav-toggle__item:before,
.nav-toggle__item:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  z-index: 1;
  transition: transform 0.2s linear;
}

.nav-toggle__item:before {
  top: -8px;
}

.nav-toggle__item:after {
  bottom: -8px;
}

.educator-nav-toggle {
  position: relative;
  font-size: 0;
  color: transparent;
  border: 0;
  background: none;
  cursor: pointer;
  z-index: 2;
  width: 24px;
}
.second-menu--burger {
  cursor: pointer;
}
.second-menu--burger span {
  padding-right: 1rem;
}
.second-menu--pull-out {
  transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
  opacity: 0;
  height: 0;
}

.second-menu--pull-out.active {
  transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
  opacity: 1;
  height: 120px;
}
.second-menu--pull-out::before {
  content: "";
  width: 100%;
  position: absolute;
  height: 1px;
  background: #000;
}
.second-menu--pull-out ul {
  display: flex;
  justify-content: space-evenly;
  padding: 5rem 0;
}

.second-menu--pull-out ul {
  display: none;
}

.second-menu--pull-out.active ul {
  display: flex;
}

.second-menu--pull-out.active ul li {
  display: block;
}

.second-menu--pull-out ul li a {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
}

.nav-toggle__item.active {
  background: none;
  width: 70%;
}

.nav-toggle__item.active:before {
  transform-origin: left top;
  transform: rotate(45deg) translateX(-3px);
}
.nav-toggle__item.active:after {
  transform-origin: left bottom;
  transform: rotate(-45deg) translateX(-3px);
  bottom: 0px;
}

.active-hide {
  overflow: hidden;
}
@media (max-width: 992px) {
  .second-menu--logo {
    width: 350px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .span-invisible {
    display: none;
  }
}

@media (max-width: 768px) {
  .second-menu--logo {
    display: none;
  }
  .second-menu--burger {
    display: flex;
    flex-direction: row-reverse;
    align-items: baseline;
  }
  .second-menu--burger button {
    margin-right: 3rem;
  }
  .second-menu-wrapper {
    justify-content: center;
  }
  .second-menu--pull-out.active {
    height: 100vh;
  }
  .second-menu--pull-out.active ul {
    flex-direction: column;
    align-items: center;
    height: 80vh;
  }
}

/* END Menu */

/* Headers */
.doctor {
  max-width: 1580px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1920px) {
}

@media (max-width: 1600px) {
  .doctor {
    max-width: 1200px;
  }
}

@media (max-width: 1300px) {
  .doctor {
    max-width: 940px;
  }
}

@media (max-width: 970px) {
  .doctor {
    max-width: 620px;
  }
}

@media (max-width: 630px) {
  .doctor {
    max-width: 440px;
  }
}

@media (max-width: 480px) {
  .doctor {
    max-width: 340px;
  }
}

/* END Headers */

/* Modal */

.sendSuccessWindow.educator h4 {
  font-family: SegoeUI;
  font-style: italic;
  font-weight: 300;
  font-size: 96px;
  line-height: 128px;
  text-align: center;
  text-transform: uppercase;
}

.sendSuccessWindow.educator p {
  font-family: SegoeUI;
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 42px;

  text-align: center;
}

@media (max-width: 768px) {
  .sendSuccessWindow.educator h4 {
    font-weight: 300;
    font-size: 48px;
    line-height: 48px;
  }

  .sendSuccessWindow.educator p {
    font-size: 18px;
    line-height: 24px;
  }
}
/* END Modal */

/* First block */
.doctor-first-block .info-block {
  margin-top: 5rem;
}
.doctor-first-block h1 {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 900;
  font-size: 64px;
  line-height: 75px;
  text-align: left;

  color: #000000;

  animation: fadeInLeft;
  animation-duration: 1s;
}

.doctor-first-block p {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  margin: 2rem 0 4rem;
  /* or 167% */

  color: #000000;

  animation: fadeInLeft;
  animation-duration: 1s;
}

.wrapper-button {
  display: flex;
  flex-direction: column;

  animation: fadeInLeft;
  animation-duration: 1s;
}

.pobeditel-block {
  animation: fadeInRight;
  animation-duration: 1s;
}

.doctor-first-block h4 {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 42px;
  /* or 117% */

  text-align: center;
  letter-spacing: 0.05em;

  color: #000000;
}
img.pobeditel {
  width: 100%;
}

@media (max-width: 1920px) {
  .doctor-first-block h1 {
    font-size: 48px;
    line-height: 56px;
  }
  .doctor-first-block p {
    font-size: 13px;
    line-height: 25px;
  }
  .doctor-first-block h4 {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (max-width: 992px) {
  .doctor-first-block h1 {
    font-size: 30px;
    line-height: 35px;
    text-align: center;
  }
  .doctor-first-block p {
    font-size: 13px;
    line-height: 24px;
    text-align: center;
  }
  .doctor-first-block h4 {
    font-size: 18px;
    line-height: 24px;
  }
}
/* END First block */

/* Author projects */
.doctor-author {
  margin-top: 15rem;
}
.doctor-author--main {
  margin-top: 5rem;
}
.doctor-author--image img {
  width: 90%;
}

ul.doctor-author__social-items {
  display: flex;
  justify-content: center;
  padding: 0;
}

ul.doctor-author__social-items li {
  display: block;
  padding: 2rem 1rem;
  padding-left: 0;
}

.doctor-author--text-block p {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  text-indent: 1.5em;
  margin: 0;

  color: #000000;
}

.doctor-author--text-block--button-wrapper {
  display: flex;
  justify-content: space-around;
  margin-top: 3rem;
}

/* Удалить */
.doctor-author--text-block {
  display: none;
}

/* END Удалить */

@media (max-width: 1920px) {
  .doctor-author--text-block p {
    font-size: 13px;
    line-height: 25px;
  }
  .doctor-author--text-block--button-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .doctor-author--image img {
    width: 100%;
  }
  ul.doctor-author__social-items {
    justify-content: space-evenly;
  }

  .doctor-author--text-block p {
    font-size: 12px;
    line-height: 20px;
  }
}
/* END Author projects */

/* About */
.doctor-about {
  margin-top: 15rem;
}
.doctor-about--content {
  margin-top: 5rem;
}
.doctor-about--content p {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  margin: 0;

  color: #000000;
}

.doctor-about--content h3 {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 42px;

  letter-spacing: 0.05em;

  margin: 4rem 0;

  color: #000000;
}
.doctor-about--image img {
  width: 100%;
  margin-top: -5rem;
}

@media (max-width: 1920px) {
  .doctor-about--content p {
    font-size: 13px;
    line-height: 25px;
  }
  .doctor-about--content h3 {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (max-width: 992px) {
  .doctor-about .row {
    display: flex;
    flex-direction: column-reverse;
  }
  .doctor-about--image img {
    margin-top: -0;
  }
  .doctor-about--content p {
    font-size: 13px;
    line-height: 24px;
  }
  .doctor-about--content h3 {
    font-size: 18px;
    line-height: 24px;
  }
}

/* END About */

/* Rules */
.doctor-rules--image img {
  width: 100%;
}

.doctor-rules {
  margin-top: 15rem;
}
.doctor-rules .row {
  margin-top: 10rem;
}

.doctor-rules--content {
  margin-top: 7rem;
}

.doctor-rules--content p {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;

  color: #000000;
}

.doctor-rules--button-wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
}

.doctor-rules--button-wrapper button {
  margin-top: 2rem;
}

@media (max-width: 1920px) {
  .doctor-rules--content p {
    font-size: 13px;
    line-height: 25px;
  }
}

@media (max-width: 992px) {
  .doctor-rules {
    margin-top: 10rem;
  }
  .doctor-rules--content p {
    font-size: 13px;
    line-height: 24px;
  }
}

/* END Rules */

/* Nominations */
.doctor-nominations {
  margin-top: 20rem;
}
.doctor-nominations .row {
  margin-top: 10rem;
}
.doctor-nominations__item__img {
  position: relative;
}

.doctor-nominations__item img {
  width: 100%;
}

.doctor-nominations--button {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.doctor-nominations--button button {
  width: 500px;
}

.doctor-nominations__item p {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 42px;
  margin-top: 3rem;

  text-align: center;
  letter-spacing: 0.05em;
}

@media (max-width: 1920px) {
  .doctor-nominations__item p {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 992px) {
  .doctor-nominations {
    margin-top: 14rem;
  }
  .doctor-nominations__item p {
    font-size: 18px;
    line-height: 24px;
  }
  .doctor-nominations--button {
    position: initial;
    bottom: inherit;
    left: inherit;
    transform: inherit;
  }
  .doctor-nominations--button button {
    width: 100%;
  }
}
/* END Nominations */

/* Prize */
.doctor-prize {
  margin-top: 20rem;
}
.doctor-prize .row {
  margin-top: 10rem;
}
.doctor-prize__item {
  text-align: center;
}
.doctor-prize__item img {
  width: 90%;
}

.doctor-prize__item p {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 42px;

  text-align: center;
  letter-spacing: 0.05em;

  color: #000000;
}

.doctor-prize__text {
  margin-top: 3rem;
}

span.doctor-prize__text {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;

  color: #000000;
}
p.doctor-prize__text {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 30px;

  color: #000000;
}

@media (max-width: 1920px) {
  .doctor-prize__item p {
    font-size: 24px;
    line-height: 32px;
  }

  span.doctor-prize__text {
    font-size: 13px;
    line-height: 25px;
  }

  p.doctor-prize__text {
    font-size: 12px;
    line-height: 20px;
  }
}

@media (max-width: 992px) {
  .doctor-prize__item p {
    font-size: 18px;
    line-height: 24px;
  }
  span.doctor-prize__text {
    font-size: 13px;
    line-height: 25px;
  }
  p.doctor-prize__text {
    font-weight: 200;
    font-size: 12px;
    line-height: 20px;
  }
  .doctor-prize {
    margin-top: 15rem;
  }
}
/* END Prize */

/* Contacts */

.doctor-contacts {
  margin-top: 20rem;
}

.doctor-contacts .row {
  padding-top: 4rem;
  padding-left: 2rem;
}
.doctor-contacts__item {
  display: flex;
}
.doctor-contacts__img {
  height: 440px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
}

.doctor-contacts__info {
  text-align: center;
}
.doctor-contacts__info h3 {
  font-family: SegoeUI;
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 42px;
}
.doctor-contacts__info p {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
}

.doctor-contacts__feedback {
  padding: 2rem 0;
}
.doctor-contacts__feedback p {
  font-family: Montserrat;
  font-size: 18px;
  line-height: 30px;
  margin: 0;
}

.doctor-contacts__feedback h3 {
  font-family: SegoeUI;
  font-weight: 600;
  font-size: 36px;
  line-height: 42px;
  margin: 0;
  padding: 2rem 0;

  text-decoration-line: underline;
}

.doctor-contacts__feedback__sharing {
  margin-bottom: 2rem;
  display: flex;
}

.doctor-contacts__feedback__sharing span {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  margin-right: 1rem;

  color: #000000;
}

@media (max-width: 1920px) {
  .doctor-contacts__feedback p {
    font-size: 18px;
    line-height: 30px;
  }

  .doctor-contacts__feedback h3 {
    font-size: 36px;
    line-height: 42px;
  }
}

@media (max-width: 992px) {
  .doctor-contacts {
    margin-top: 10rem;
  }
  .doctor-contacts__feedback p {
    font-size: 13px;
    line-height: 24px;
  }
  .doctor-contacts__feedback h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
  }

  .doctor-contacts__feedback__sharing {
    flex-direction: column;
  }

  .doctor-contacts__feedback__sharing div:nth-child(2) {
    margin-top: 2rem;
  }
}

/* END Contacts */

/* Items */

.doctor-items .doctor-contacts {
  margin-top: 0;
}

.doctor-items__grid {
  width: 100%;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(auto-fit, 460px);
  column-gap: 100px;
  row-gap: 80px;
}

.doctor-items__container {
  display: flex;
  flex-direction: row;
  gap: 100px;
}

.doctor-items__items {
  display: flex;
  flex-direction: column;
  width: 460px;
}

.doctor-items__image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 460px;
  position: relative;
  width: 460px;
  text-align: center;
}

.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.doctor-items__vote {
  position: absolute;
  border: 1px solid #000000;
  background-color: #ffffff;
  border-radius: 20px;
  bottom: 9px;
  right: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  width: 86px;
  height: 28px;
  transition: all 0.5s ease;
  text-align: start;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 15px;
}

.doctor-items__vote::after {
  content: " ";
  background: url(../../../uploads/media/img/doctor/2022/like.svg) no-repeat center;
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-left: 10px;
  right: 15px;
  top: 2px;
  position: absolute;
}

.doctor-items__avatar {
  border-radius: 20px;
  border: 1px solid #000000;
}

.doctor-items__info {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.doctor-items__info h3 {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  letter-spacing: 0.05em;
}

.doctor-items__info p {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.doctor-items__info span {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;

  text-align: center;
}
.doctor-items__filter .form-control {
  height: 60px;
  border: 1px solid #c4c4c4;
  max-width: 620px;
  color: #000;
  border-radius: 10px;
  background: url(../../../uploads/media/img/doctor/search.svg) no-repeat;
  background-size: 24px 24px;
  background-position: bottom 18px right 20px;
  padding-right: 80px;
}

.doctor-items__filter .form-control::placeholder {
  opacity: 30%;
}

.doctor-items__position {
  position: absolute;
  left: 260px;
  top: 422px;
  border: 1px solid #000000;
  border-radius: 20px;
  background-color: #ffffff;
  padding: 5px 15px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.doctor-items__position p {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #000000;
  margin: 0;
  text-transform: uppercase;
}

.doctor-items__button-create {
  display: flex;
}

.doctor-items__button-create a {
  margin-right: 10px;
}

.doctor-items__footer-title {
  font-family: 'Manrope', serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 64px;
  margin-bottom: 50px;
}

.doctor-items__footer-description {
  font-family: 'Manrope', serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}

.doctor-items .select2-container {
  max-width: 100%;
  min-width: 100%;
}

.doctor-items .select2-container--default .select2-selection--single {
  height: 55px;
  border: 1px solid #c4c4c4;
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

.doctor-items
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow,
.doctor-create
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 14px;
}
input#publicfilterform-title::placeholder {
  color: #000;
}

.select2-results__option {
  padding: 1rem 6px;
}

.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background: #80cdf9;
  color: #000;
  border-radius: 5px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #000;
}
.doctor-items__filter {
  margin: 6rem 0 3rem;
}

.doctor-contacts__title-problems {
  padding-left: 0;
}

.doctor-items__access {
  margin: 5rem 0 8rem;
}

.doctor-items__button {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

.item__button {
  border: 1px solid #000000;
  border-radius: 20px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  text-transform: uppercase;
  width: 224px;
  height: 40px;
  transition: all 0.5s ease;
}

.item__button:hover {
  background-color: #BBE8B1;
}

.item__button-share {
  background-color: #ffffff;
  text-align: start;
  position: relative;
  transition: all 0.5s ease;
  padding-left: 35px;
  padding-top: 11px;
}

.item__button-share::after {
  content: " ";
  background: url(../../../uploads/media/img/doctor/2022/share.svg) no-repeat center;
  width: 24px;
  height: 24px;
  display: inline-block;
  right: 35px;
  top: 8px;
  position: absolute;
}



@media (max-width: 992px) {
  .doctor-items__filter {
    margin-top: 2rem;
  }

  .doctor-items__footer {
    display: none;
  }

  .doctor-items .select2-container--default .select2-selection--single,
  .doctor-create .select2-container--default .select2-selection--single {
    height: 60px;
  }

  .doctor-contacts .row {
    padding-top: 2rem;
  }

  .doctor-items__access {
    margin: 0;
  }

  .doctor-items__info {
    width: inherit;
    min-height: inherit;
  }
}

.item__button-profile-share::after {
  content: " ";
  background: url(../../../uploads/media/img/doctor/2022/share.svg) no-repeat center;
  width: 24px;
  height: 24px;
  display: inline-block;
  right: 153px;
  top: 8px;
  position: absolute;
}

.item__button-blue {
  background-color: #ADE6F7;
}

@media (max-width: 1600px) {
  .doctor-items__grid {
    grid-template-columns: repeat(auto-fit, 364px);
    column-gap: 54px;
  }

  .doctor-items__image {
    width: 364px;
    height: 364px;
  }

  .doctor-items__position {
    left: 164px;
    top: 326px;
  }

  .doctor-items__position-view {
    left: 260px;
    top: 422px;
  }

  .item__button {
    width: 176px;
  }

  .item__button-share {
    padding-left: 11px;
  }

  .item__button-share::after {
    right: 11px;
  }

  .item__button-profile-share::after {
    right: 153px;
  }

  .doctor-items__items {
    width: 364px;
  }

  .doctor-view__items {
    width: 460px;
  }
}

@media (max-width: 1300px) {
  .doctor-items__grid {
    grid-template-columns: repeat(auto-fit, 460px);
    column-gap: 20px;
  }

  .doctor-items__image {
    width: 460px;
    height: 460px;
  }

  .doctor-items__position {
    left: 259px;
    top: 422px;
  }

  .item__button {
    width: 224px;
  }

  .item__button-share {
    padding-left: 35px;
  }

  .item__button-share::after {
    right: 35px;
  }

  .item__button-profile-share::after {
    right: 153px;
  }

  .doctor-items__items {
    width: 460px;
  }
}

@media (max-width: 970px) {
  .doctor-items__grid {
    grid-template-columns: repeat(auto-fit, 300px);
    column-gap: 20px;
  }


  .doctor-items__container {
    display: flex;
    flex-direction: column-reverse;
    gap: 50px;
  }

  .doctor-items__image {
    width: 300px;
    height: 300px;
  }

  .doctor-items__position {
    left: 100px;
    top: 262px;
  }

  .doctor-items__position-view {
    left: 260px;
    top: 422px;
  }

  .item__button {
    width: 146px;
    font-size: 14px;
  }

  .item__button-share {
    padding-left: 9px;
  }

  .item__button-share::after {
    right: 9px;
  }

  .doctor-items__items {
    width: 300px;
  }

  .item__button-profile-share::after {
    right: 153px;
  }

  .item__button-profile {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .doctor-items__grid {
    grid-template-columns: repeat(auto-fit, 440px);
    column-gap: 20px;
  }

  .doctor-items__image {
    width: 440px;
    height: 440px;
  }

  .doctor-items__position {
    left: 240px;
    top: 402px;
  }

  .item__button {
    width: 214px;
    font-size: 18px;
  }

  .item__button-share {
    padding-left: 30px;
  }

  .item__button-share::after {
    right: 30px;
  }

  .doctor-items__items {
    width: 440px;
  }

  .item__button-profile-share::after {
    right: 143px;
  }
}

@media (max-width: 480px) {
  .doctor-items__grid {
    grid-template-columns: repeat(1, 300px);
    column-gap: 0;
    row-gap: 50px;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .doctor-items__image {
    width: 300px;
    height: 300px;
  }

  .doctor-items__position {
    left: 100px;
    top: 262px;
  }

  .item__button {
    width: 146px;
    font-size: 14px;
  }

  .item__button-share {
    padding-left: 9px;
  }

  .item__button-share::after {
    right: 9px;
  }

  .doctor-items__items {
    width: 300px;
  }

  .item__button-profile-share::after {
    right: 73px
  }
  .item__button-profile {
    font-size: 18px;
  }

}

.item__button-profile {
  width: 100%;
}

.item__button-profile-share {
  background-color: #ffffff;
  width: 100%;
  height: 40px;
  text-align: start;
  position: relative;
  transition: all 0.5s ease;
  padding-left: 153px;
}

@media (max-width: 480px) {
  .item__button-profile-share {
    padding-left: 73px;
  }
}




/* END Items */

/* View page */
.doctor-view__image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 460px;
  position: relative;
  width: 460px;
  text-align: center;
}

@media (max-width: 630px) {
  .doctor-view__image {
    width: 440px;
    height: 440px;
  }
}

@media (max-width: 480px) {
  .doctor-view__image {
    width: 300px;
    height: 300px;
  }
}

/* View page */

/* Paginator */

.doctor__paginator {
  display: flex;
  justify-content: center;
  margin-bottom: 8rem;
}

.doctor__paginator .prev,
.doctor__paginator .next {

}

.doctor__paginator .pagination > li > a {
  border-radius: 20px;
  border: 1px solid #000000;
  margin: 0 1rem;
  padding: 10px 16px;
  transition: all 0.5s ease;
}

.doctor__paginator .pagination > .active > a {
  background: #ADE6F7;
  color: #000000;
}

.doctor__paginator .pagination > li > a:hover {
  background-color: #BBE8B1;
  color: #000000;
}

.pagination > li > a,
.pagination > li > span {
  color: #000000;
}

.pagination > li > span {
  border-radius: 20px;
  border: 1px solid #000000;
  margin: 0 1rem;
  padding: 10px 16px;
  transition: all 0.5s ease;
}

.pagination>li:last-child>a, .pagination>li:last-child>span,
.pagination>li:first-child>a, .pagination>li:first-child>span {
  border-radius: 20px;
}



.pagination > li > a,
.pagination > li > span {
  background-color: #ffffff;
}

/* END Paginator */

/* new Create */

.doctor-form {
  display: grid;
  grid-template-areas: 
    "image user"
    "image workplace";
  width: 100%;
  grid-template-columns: 400px 1fr;
  column-gap: 200px;
  grid-template-rows: min-content;
}

.doctor-form__inputs-block {
  display: flex;
  flex-direction: column;
  max-width: 620px;
}

.doctor-form__user-data {
  grid-area: user;
}

.doctor-form__workplace-data {
  grid-area: workplace;
}

.block-image {
  padding-bottom: 40px;
}

.doctor-form__upload-button {
  border: 1px solid #000000;
  background-color: #ADE6F7;
  border-radius: 20px;
  position: relative;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  text-transform: uppercase;
  padding: 11px 54px;
  width: 280px;
  height: 40px;
  transition: all 0.5s ease;

}

.doctor-form__upload-button::before {
  content: " ";
  background: url(../../../uploads/media/img/doctor/arrow-right.svg) no-repeat center;
  width: 24px;
  height: 24px;
  display: inline-block;
  left: 16.5px;
  top: 8px;
  position: absolute;
}

.doctor-form__upload-button::after {
  content: " ";
  background: url(../../../uploads/media/img/doctor/arrow-right.svg) no-repeat center;
  transform: rotate(-180deg);
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-left: 10px;
  right: 16.5px;
  top: 8px;
  position: absolute;
}

.doctor-form__upload-button:hover {
  background-color: #BBE8B1;
}

.doctor-form__delete-button {
  border: 1px solid #000000;
  border-radius: 20px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  padding: 11px 15px;
  text-transform: uppercase;
  width: fit-content;
  height: 40px;
  transition: all 0.5s ease;
  margin-top: 20px;

}

.doctor-form__delete-button:hover {
  background-color: #BBE8B1;
}

@media (max-width: 1300px) {
  .doctor-form {
    grid-template-columns: 400px 380px;
    column-gap: 50px;
  }
}

@media (max-width: 995px) {
  .doctor-form {
    grid-template-areas: 
      "user"
      "image"
      "workplace";
    grid-template-columns: 380px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .doctor-form {
    grid-template-columns: 300px;
  }
}
/* new Create */

/* Create */

.doctor-create__form {
  margin: 50px 0;
}

.block-image__img {
  display: none;
  width: 440px;
  height: 440px;
  background-size: cover;
  background-position: center;
  margin-bottom: 50px;
  border-radius: 50%;
}

.block-image__input {
  position: absolute;
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
}

.block-image-wrap {
  width: 380px;
  height: 380px;
  position: relative;
  margin-bottom: 10px;
  background-image: url("/uploads/media/img/doctor/2022/avatar-placeholder.jpg");
  background-size: contain;
  border-radius: 20px;
  border: 1px solid #000000
}

.block-image__text {
  max-width: 440px;
}
.block-image__text p {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;

  text-align: center;
}

.block-image__error {
  color: red;
}

.block-image__buttons {
  display: flex;
  flex-direction: column;
  max-width: 440px;
  margin-top: 20px;
}

.doctor-create__submit {
  margin: 3rem 0;
}

.doctor-create__ask {
  margin-top: 7rem;
}

.doctor-create__ask p {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;

  margin-bottom: 3rem;
}

/* #nomination_list,
#item-institution_id, */
.doctor-create .form-control,
.doctor-create .select2-container--default .select2-selection--single {
  display: flex;
  align-items: center;
  height: 55px;

  font-size: 16px;
  line-height: 24px;
  color: #000;

  border: 1px solid #000000;
  border-radius: 10px;
  box-sizing: border-box; 
}

.doctor-create form p,
.doctor-create form label {
  font-family: 'Manrope', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 12px;
  color: #000;
}

/* .field-item-institution_id .select2-container, */
/* .field-item-job_id .select2-container,
.field-item-nomination_id .select2-container, */
.field-item-gender,
.field-item-birthdate,
/* .field-item-adress, */
.field-item-phone,
.field-item-email,
.field-item-title,
.field-item-adress,
.field-item-district,
.field-item-phone,
.field-item-nomination_id,
.field-item-job_id {
  max-width: 380px;
  min-width: 300px;
}

.field-item-disctrict,
.field-item-institution_id {
  max-width: 620px;
  min-width: 300px;
}
/* 
#nomination_list,
#item-institution_id {
  max-width: 100%; 
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
} */

#nomination_list option,
#item-institution_id option {
  display: flex;
  width: fit-content;

  font-size: 16px; 
  line-height: 24px;
}

.form-group__checked {
  display: flex;
}

@media (max-width: 992px) {
}

.doctor-create__form h3 {
  font-family: 'Manrope', serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 30px;
  /* or 117% */

  letter-spacing: 0.05em;
}

@media (max-width: 1920px) {

  .doctor-create__ask p {
    font-size: 13px;
    line-height: 25px;
  }
}

@media (max-width: 992px) {
  .doctor-create__form {
    margin: 0;
  }

  .block-image-wrap {
    margin-bottom: 0;
    background-repeat: no-repeat;
    width: 300px;
    height: 300px;
  }

  .doctor-create .form-control {
    height: 60px;
    border: 1px solid #000;
  }
  #item-title {
    width: 100%;
  }

  .col-md-12.block-data {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* END Create */

/* Profile */

.doctor-profile__subtitle {
  margin-top: 5rem;
}

.doctor-profile__text-block {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.doctor-profile__text-block h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  margin-top: 0;
}

.doctor-profile__text-block p {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-top: 20px;
}

.doctor-profile__button {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  gap: 20px;
}

.doctor-profile__subtitle p {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
}

.doctor-profile .doctor-items__button {
  text-align: left;
}

.doctor-profile .doctor-items__info {
  min-height: auto;
  margin-top: 2rem;
}

.doctor-items__review {
  margin-top: 17rem;
}

.doctor-items__review label {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 2rem;

  letter-spacing: 0.05em;
}

.doctor-items__review #guestbook-text {
  height: 310px;
}

.doctor-profile .row {
  margin-bottom: 2rem;
}
.doctor-items__reviews {
  margin: 3rem 4rem 2rem;
}
.doctor-items__reviews__inner {
  margin: 0 1rem;
  border: 1px solid #000000;
  border-radius: 10px;
  padding: 3rem 5rem 5rem;
  text-align: justify;
}

.doctor-items__reviews__text span {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 30px;
}

.doctor-items__reviews__text p {
  margin-top: 2rem;
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
}

.doctor-profile .slick-next:before {
  content: url(/uploads/media/img/doctor/arrow-prev.svg);
}
.doctor-profile .slick-prev {
  left: -40px;
}
.doctor-profile .slick-prev:before {
  content: url(/uploads/media/img/doctor/arrow-next.svg);
}

@media (max-width: 1920px) {
  .doctor-profile__subtitle p {
    font-size: 13px;
    line-height: 25px;
  }

  .doctor-items__review label {
    font-size: 24px;
    line-height: 32px;
  }

  .doctor-items__review #guestbook-text {
    height: 300px;
  }

  .doctor-items__reviews {
    margin: 3rem 8rem 2rem;
  }

  .doctor-items__reviews__text span {
    font-size: 12px;
    line-height: 20px;
  }

  .doctor-items__reviews__text p {
    font-size: 13px;
    line-height: 25px;
  }
}

@media (max-width: 992px) {
  .doctor-profile__subtitle {
    margin-top: 0;
  }

  .doctor-profile__button {
    width: 460px;
  }

  .doctor-profile .row {
    margin-bottom: 7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .doctor-profile .doctor-items__items {
    align-items: flex-start;
    width: 100%;
  }

  .doctor-profile .doctor-items__button {
    width: 100%;
  }

  .doctor-items__review {
    margin-top: 7rem;
    width: 100%;
  }

  .field-guestbook-text {
    text-align: center;
  }

  .doctor-items__reviews {
    margin: 3rem -10px 2rem;
  }

  .doctor-items__reviews__text p {
    line-height: 24px;
  }
  .doctor-items__reviews__inner {
    padding: 2rem 2rem 2rem;
  }
}

@media (max-width: 480px) {
  .doctor-profile__button {
    width: 300px;
  }
}

@media (max-width: 480px) {
  .doctor-profile .doctor-items__items {
    align-items: center;
  }
}

/* END Profile */

/* Author */

.doctor-author-page .main-text p {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  text-indent: 1.5em;
}

@media (max-width: 1920px) {
  .doctor-author-page .main-text p {
    font-size: 13px;
    line-height: 25px;
  }
}

/* END Author */

/* Modal */

.modal-doctor .modalWindow {
  border: 1px solid #000;
}

.modal-doctor .modalWindow .sendSuccessWindow h4 {
  font-family: 'Manrope', serif;
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 56px;
  text-align: center;
}

.modal-doctor .modalWindow .sendSuccessWindow p {
  font-family: 'Manrope', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;

  text-align: center;
}

.modal-doctor button.close.closeBigX {
  right: 10px;
  border: none;
  color: #000;
  background-image: none;
}

.modal-doctor button.close.closeBigX:hover {
  opacity: 0.5;
}

@media (max-width: 992px) {
  .modal-doctor .modalWindow .sendSuccessWindow h4 {
    font-size: 30px;
    line-height: 35px;
  }

  .modal-doctor .modalWindow .sendSuccessWindow p {
    font-size: 18px;
    line-height: 24px;
  }
}

/* END Modal */

/* Footer */

.doctor-footer {
  margin: 5rem -15px -10px -15px;
}

.doctor-footer__header {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f8f8;
  padding: 1.5rem 0;
}
.doctor-footer__menu-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 0;
  background: #f8f8f8;
  position: relative;
}

.doctor-footer__menu-wrapper::before,
.doctor-footer__menu-wrapper::after {
  content: "";
  height: 1px;
  background: #000;
  width: 100%;
  position: absolute;
}

.doctor-footer__menu-wrapper::before {
  top: 0;
}
.doctor-footer__menu-wrapper::after {
  bottom: 0;
}

.doctor-footer__header a,
.doctor-footer__menu-items li a {
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}
.doctor-footer ul {
  display: flex;
}
.doctor-footer li {
  display: block;
}
.doctor-footer__social-items {
  margin-right: 1rem;
}
.doctor-footer__menu-items li {
  padding: 0 3rem;
}
.doctor-footer__social-items li {
  padding: 0 1rem;
}

@media (max-width: 1920px) {
  .doctor-footer {
    margin: 0;
    margin-top: 8rem;
  }
}

@media (max-width: 1458px) {
  .doctor-footer__menu-items li {
    padding: 0 1rem;
  }
}

@media (max-width: 1077px) {
  ul.doctor-footer__menu-items {
    padding-left: 0;
  }
}

@media (max-width: 992px) {
  .doctor-footer__header {
    display: none;
  }
  .doctor-footer__menu-wrapper {
    flex-direction: column;
    background: #fffdef;
  }
  ul.doctor-footer__menu-items {
    flex-direction: column;
    align-items: center;
  }
  .doctor-footer__menu-items li {
    padding: 2rem 0;
  }
  .doctor-footer__social-items {
    margin: 1rem 0;
  }
  ul.doctor-footer__social-items {
    margin: 0;
    padding: 0;
  }
  .doctor-footer__social-items li {
    padding: 0 2rem;
  }
}

/* END Footer */
