/* Google Fonts  */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');



/* Flaticon */
@import url('flaticon/font/uicons-bold-rounded/uicons-bold-rounded.css');
@import url('flaticon/font/uicons-bold-straight/uicons-bold-straight.css');
@import url('flaticon/font/uicons-brands/uicons-brands.css');
@import url('flaticon/font/uicons-regular-chubby/uicons-regular-chubby.css');
@import url('flaticon/font/uicons-regular-rounded/uicons-regular-rounded.css');
@import url('flaticon/font/uicons-regular-straight/uicons-regular-straight.css');
@import url('flaticon/font/uicons-solid-chubby/uicons-solid-chubby.css');
@import url('flaticon/font/uicons-solid-rounded/uicons-solid-rounded.css');
@import url('flaticon/font/uicons-solid-straight/uicons-solid-straight.css');
@import url('flaticon/font/uicons-thin-chubby/uicons-thin-chubby.css');
@import url('flaticon/font/uicons-thin-rounded/uicons-thin-rounded.css');
@import url('flaticon/font/uicons-thin-straight/uicons-thin-straight.css');


/* Color Variables  */
:root {
  --primary: #00C0DF;
  --secondary: #FACF32;
  --tertiary: #0C66C4;
  --danger: #ed5929;
  --success: #00a185;
  --success-light: #119f872e;
  --header: #000000;
  --font: #636060;
  --font-light: #808080;
  --white: #fff;
  --border: #00387C;
  --border-light: #e5e5e5;
  --bg-light: #f6f8fa;
  --bg-light-v2: #dddfe1;
  --primary-light: #cff5fb;
  --bg-primary-light: rgba(240, 250, 255, 1);
  --link-hover: #21c8e2d3;
}


* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}


/***

====================================================================
  Global Settings
====================================================================

 ***/


body {
  color: var(--font);
  font-weight: 400;
  background: var(--white);
  font-family: "Open Sans", sans-serif;
}

.large-container {
  max-width: 1600px;
  padding: 0px 15px;
  margin: 0 auto;
}

.container-fluid {
  padding: 0px;
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

.small-container {
  max-width: 680px;
  margin: 0 auto;
}


a {
  color: var(--primary);
  text-decoration: none;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

a:hover {
  color: var(--link-hover);
  text-decoration: none;
  outline: none;
}

a.link_reverse {
  color: #fff;
}

a.link_reverse:hover {
  color: var(--header);
}

.img_link:hover {
  opacity: .7;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

ul.list-style-disc li {
  list-style: disc;
}

ul.list-style-number li {
  list-style: decimal;
}

input {
  transition: all 500ms ease;
}

button:focus,
input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
  transition: all 500ms ease;
}

p {
  position: relative;
  font-size: 17px;
  line-height: 1.5;
  color: var(--font);
  margin: 0px;
  transition: all 500ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: var(--header);
  margin: 0px;
  transition: all 500ms ease;
}

.lead {
  font-weight: 500;
}

.text-danger {
  color: var(--danger);
}

/* Pagination  */

.pagination {
  gap: 5px;
  justify-content: center;
}

.pagination .page-item .page-link {
  color: var(--primary);
  background: var(--bg-primary-light);
  border-color: var(--bg-primary-light);
  border-radius: 4px;
}

/***************/
.pagination .page-item .page-link:hover,
.pagination .page-item.active .page-link,
.pagination .page-item>a:hover,
.pagination .page-item.active>a {
  z-index: 1;
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

.pagination .first a.page-link,
.pagination .previous a.page-link,
.pagination .next a.page-link,
.pagination .last a.page-link {
  background: var(--bg-light);
  color: var(--header);
}



/* Tooltip colors */

.tooltip-inner {
  background-color: var(--primary);
  color: var(--white);
}

/* Fix for tooltip arrow color on all sides */
.tooltip.bs-tooltip-top .tooltip-arrow::before,
.tooltip[data-popper-placement^="top"] .tooltip-arrow::before {
  border-top-color: var(--primary) !important;
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before,
.tooltip[data-popper-placement^="bottom"] .tooltip-arrow::before {
  border-bottom-color: var(--primary) !important;
}

.tooltip.bs-tooltip-start .tooltip-arrow::before,
.tooltip[data-popper-placement^="left"] .tooltip-arrow::before {
  border-left-color: var(--primary) !important;
}

.tooltip.bs-tooltip-end .tooltip-arrow::before,
.tooltip[data-popper-placement^="right"] .tooltip-arrow::before {
  border-right-color: var(--primary) !important;
}




.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.form-control,
.form-select {
  padding: .575rem .75rem;
}

.form-select.shorting {
  padding: .45rem .5rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: none;
}

.form-control.error,
.form-select.error {
  border-color: var(--danger);
  color: var(--danger);
  background-color: rgba(255, 246, 246, 0.4588235294117647);
}

.form-control.success,
.form-select.success {
  border-color: var(--success);
  color: var(--success);
  background-color: rgb(245, 255, 244);
}

.form-check-input {
  border-color: var(--border-light);
}

.form-check-input:checked {
  background-color: var(--success);
  border-color: var(--success);
}

.form-check-input:focus {
  box-shadow: none;
  border-color: var(--success);
}

a.input_tooltip {
  color: var(--font);
  position: absolute;
  right: 10px;
  top: 14px;
  line-height: 1;
  text-align: left;
}

a.input_tooltip:hover {
  color: var(--primary);
}

.rad_4 {
  border-radius: 4px;
}

.rad_6 {
  border-radius: 6px;
}

.color_primary {
  color: var(--primary);
}

.accordion-button:focus {
  box-shadow: none;
}

label i {
  color: var(--danger);
}

.modal-title .logo_insignia {
  width: 24px;
  position: relative;
  top: -3px;
}


.translate_5 {
  transition: all .3s ease;
}

.translate_5:hover {
  transform: translateY(-5px);
}

.section {
  padding: 90px 0px;
  background: var(--white);
}

.section.light {
  background: var(--bg-light);
}

.section.primary {
  background: var(--primary);
}

.section.primary-light {
  background: var(--bg-primary-light);
}

.bg_secondary {
  background: var(--secondary);
}

.scroll-top {
  width: 48px;
  height: 48px;
  line-height: 48px;
  position: fixed;
  bottom: 105%;
  right: 30px;
  font-size: 24px;
  z-index: 99;
  color: var(--white);
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: all .3s ease;
}

.scroll-top:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.scroll-top.open {
  bottom: 80px;
}

@media screen and (max-width: 767px) {
  .scroll-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
}


.subHeader {
  display: inline-block;
  background: var(--primary);
  padding: 4px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}

.title {
  font-size: 68px;
  font-weight: 500;
  color: var(--header);
  text-transform: uppercase;
}

.title span {
  color: var(--primary);
}

.section_title {
  font-size: 40px;
  font-weight: 400;
  color: var(--header);
  /* text-transform: uppercase; */
}

.section_title span {
  color: var(--primary);
  font-weight: 600;
}

.section.primary .section_title {
  color: var(--white);
}

.section.primary .section_title span {
  color: var(--white);
}

.title_2 {
  font-size: 42px;
}

.title_3 {
  font-size: 24px;
  line-height: 34px;
}

.title_4 {
  font-size: 20px;
  line-height: 24px;
}

.section_desc {
  font-size: 20px;
  font-weight: 500;
}



/* Buttons  */

.theme_btn {
  display: inline-block;
  padding: 6px 30px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  /* text-transform: capitalize; */
  transition: all .3s ease;
}

.btn_primary {
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}

.btn_primary:hover {
  background: var(--secondary);
  color: var(--header);
  border-color: var(--secondary);
}

.btn_primary:disabled{
  background: var(--primary);
  opacity: .8;
  cursor: default;
  pointer-events: none;
}


.btn_primary_outline {
  background: transparent;
  color: var(--font);
  border: 1px solid var(--primary);
}

.btn_primary_outline:hover {
  background: var(--primary);
  color: var(--white);
}


.btn_secondary {
  background: var(--secondary);
  color: var(--header);
  border: 1px solid var(--secondary);
}

.btn_secondary:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn_secondary_outline {
  background: transparent;
  color: var(--font);
  border: 1px solid var(--secondary);
}

.btn_secondary_outline:hover {
  background: var(--secondary);
  color: var(--header);
  border-color: var(--secondary);
}


.btn_tertiary {
  background: var(--tertiary);
  color: var(--white);
  border: 1px solid var(--tertiary);
}

.btn_tertiary:hover {
  background: var(--secondary);
  color: var(--header);
  border-color: var(--secondary);
}

.btn_tertiary_outline {
  background: transparent;
  color: var(--font);
  border: 1px solid var(--tertiary);
}

.btn_tertiary_outline:hover {
  background: var(--tertiary);
  color: var(--white);
  border: 1px solid var(--tertiary);
}

.btn_danger {
  background: var(--danger);
  color: var(--white);
  border: 1px solid var(--danger);
}

.btn_danger:hover {
  background: var(--secondary);
  color: var(--header);
  border-color: var(--secondary);
}

.btn_danger_outline {
  background: transparent;
  color: var(--font);
  border: 1px solid var(--danger);
}

.btn_danger_outline:hover {
  background: var(--danger);
  color: var(--white);
  border: 1px solid var(--danger);
}


.btn_light {
  background: var(--bg-light-v2);
  color: var(--header);
  border: 1px solid var(--bg-light-v2);
}

.btn_light:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}



.theme_btn.sm {
  padding: 6px 20px;
  font-size: 15px;
}

/* .theme_btn i {
  position: relative;
  top: 2px;
} */




.common_error {
  font-size: 13px;
  color: var(--danger);
  line-height: 1.4;
  margin-top: 4px;
}

.alert {
  font-size: 15px;
  line-height: 1.5;
  color: var(--success);
}

.alert .close {
  float: right;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 1px 0 #fff;
  opacity: 1;
  border: 0;
  background: 0;
}

.alert-success .close {
  color: var(--success);
}




/* --- NAVBAR --- */
.bottom-navbar {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  border: 1px solid var(--white);
  box-shadow: 0 -2px 10px rgba(255, 255, 255, 0.1);
  z-index: 1050;
  display: inline-block;
  border-radius: 4px;
  padding: 0 1rem;
  min-width: 650px;
}

.bottom-navbar .nav_logo {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 10px rgba(30, 32, 37, .12);
}

.bottom-navbar .nav_logo img {
  width: auto;
  height: 60px;
}

.bottom-navbar .nav {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-left: 100px;
}

.bottom-navbar .nav-link {
  position: relative;
  font-size: 15px;
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 10px;
}

.bottom-navbar .nav-link .icon .svg {
  width: 18px;
  height: 18px;
}

.bottom-navbar .nav-link:hover .icon .svg rect {
  fill: var(--primary);
}

.bottom-navbar .nav-link:hover {
  color: var(--tertiary);
}


.megamenu-arrow {
  position: absolute;
  left: 50%;
  top: -14px;
  transform: translateX(-50%) translateY(0);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
  z-index: 1052;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.nav-link.active .megamenu-arrow {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

/* --- OVERLAY --- */
.megamenu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 1040;
}

.megamenu-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* --- MEGAMENU --- */
.megamenu {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 80vw;
  max-width: 800px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
  z-index: 1051;
}

.megamenu.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* example content */

.megamenu .link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px;
  border-radius: 4px;
  transition: all .3s ease;
}

.megamenu .link-item h4 {
  font-size: 18px;
  color: var(--header);
}

.megamenu .link-item p {
  font-size: 15px;
}

.megamenu .link-item .icon {
  opacity: 0;
  transition: all .3s ease;
}

.megamenu .link-item:hover {
  background: rgba(240, 243, 255, 1);
  box-shadow: 0 1px 0 var(--primary);
}

.megamenu .link-item:hover .icon {
  opacity: 1;
}

.megamenu .recent-works {
  display: block;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
}

.megamenu .recent-works .contents {
  padding: 20px;
}

.megamenu .recent-works .contents .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
}

.megamenu .recent-works .contents .header .svg path {
  fill: var(--font) !important;
  transition: all .3s ease;
}

.megamenu .recent-works:hover .contents .header .svg path {
  fill: var(--primary) !important;
  transition: all .3s ease;
}

.megamenu .recent-works .img {
  overflow: hidden;
}

.megamenu .recent-works .img img {
  transition: all .3s ease;
}

.megamenu .recent-works:hover .img img {
  transform-style: unset;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
}


@media screen and (max-width: 767px) {
  .bottom-navbar {
    width: 100%;
    bottom: 0;
    border: 0;
    min-width: auto;
    box-shadow: none;
    padding: 0;

    /* clip-path: polygon(-0.79% 5.88%, 40% 6%, 41.58% 25.96%, 46.42% 39.92%, 53.95% 38.94%, 58.47% 25.96%, 59.53% 6.08%, 99.73% 6.08%, 100% 100%, 0% 100%); */
    /* background-image: url('../img/nav-bg-shape.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; */
  }


  .bottom-navbar .nav {
    justify-content: space-between !important;
    gap: 0;
    padding: 0 15px;
    position: relative;
    z-index: 2;
    background: var(--white);
    border-top: 1px solid var(--border-light);
  }

  .bottom-navbar .nav-link {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
    gap: 6px;
    border: 0;
    padding: 0;
    font-size: 15px;
    color: var(--font);
    /* width: 64px; */
  }

  .bottom-navbar .nav_logo {
    display: none;
  }

  .bottom-navbar .nav-link.nav_logo_mobile {
    background: var(--bg-primary-light);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -33px;
    box-shadow: 0 5px 10px rgba(30, 32, 37, .12);
  }

  .megamenu {
    height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    border-radius: 16px 16px 0 0;
    bottom: 69px;
    z-index: -2;
    padding: 120px 0 60px 0;
  }

  .megamenu-arrow {
    display: none;
  }

  .megamenu .link-item {
    border-bottom: 1px solid var(--border-light);
    padding: 15px 20px;

  }

  .megamenu .link-item h4 {
    font-size: 18px;
  }

  .megamenu .link-item p {
    font-size: 14px;
  }

  .section {
    padding: 60px 0;
  }

  .theme_btn {
    font-size: 14px;
  }

  .section_title{
    font-size: 28px;
  }

}

@media screen and (max-width: 499px) {
  .bottom-navbar .nav-link {
    width: 50px;
    font-size: 12px;
  }

  .bottom-navbar .nav-link .text {
    display: none;
  }

  .bottom-navbar .nav-link .icon {
    font-size: 22px;
  }

}

@media screen and (max-width: 399px) {
  .bottom-navbar .nav-link .text {
    display: none;
  }

  .bottom-navbar .nav-link .icon .svg {
    width: 24px;
    height: 24px;
  }
}


.header_minimal {
  background: var(--white);
  padding: 15px 0;
  box-shadow: 0 2px 4px 0 #00000014;
  /* margin-bottom: 4px; */
}



.success_alert {
  text-align: left;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 18px 0px;
  padding: 10px 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  border-left: 8px solid var(--success);
  border-radius: 6px;
}

.success_alert i {
  font-size: 20px;
  color: var(--success);
}

.success_alert p {
  font-size: 15px;
  line-height: 1.4;
}

.error_alert {
  text-align: left;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 18px 0px;
  padding: 10px 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  border-left: 8px solid var(--danger);
  border-radius: 6px;
}

.error_alert i {
  font-size: 20px;
  color: var(--danger);
}

.error_alert p {
  font-size: 15px;
  line-height: 1.4;
}


/* Modal  */

@media (min-width: 992px) {
  .modal-xl {
    --bs-modal-width: 90%;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }

  .modal-body {
    max-height: 75dvh;
    overflow-y: auto;
    scrollbar-width: thin;
  }
}

@media (min-width: 1400px) {
  .modal-xl {
    --bs-modal-width: 1340px;
  }
}

.modal_v1 .modal-header {
  background: var(--primary);
  border-color: var(--primary);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.modal_v1 .modal-header h1,
.modal_v1 .modal-header .modal-title {
  color: var(--white);
  line-height: 1.3;
}

.modal_v1 .modal-header-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal_v1 .btn-close {
  background: none;
  color: var(--white);
  font-size: 18px;
  outline: none;
  box-shadow: none;
  opacity: 1;
  transition: all ease .3s;
}

.modal_v1 .btn-close:hover {
  opacity: .7;
}

.modal_v1 .modal-content {
  border-color: var(--primary);
}

@media (min-width: 992px) {
  .modal-md {
    --bs-modal-width: 600px;
  }
}

.modal_form_responsive{
  display: flex;
  flex-direction: column;
  height: 100%;
}


.social_share_btn {
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 6px;
  transition: all .3s ease;
}

.social_share_btn.fb {
  background: #3b5998;
}

.social_share_btn.twitter {
  background: #00acee;
}

.social_share_btn.linkedin {
  background: #0e76a8;
}

.social_share_btn:hover {
  opacity: .8 !important;
}



.fInput-container {
  position: relative;
}

.fInput {
  width: 100%;
  outline: none;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.6rem 1rem;
  color: var(--font);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

.fInput:focus {
  border-color: var(--primary);
}

textarea.fInput {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.fInput-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: var(--font);
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.fInput-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.fInput-container span {
  position: absolute;
  top: 0;
  left: 22px;
  transform: translateY(-50%);
  font-size: 15px;
  padding: 0 0.3rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.fInput-container span:before,
.fInput-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: var(--bg-light);
  top: 50%;
  transform: translateY(-50%);
}

.fInput-container span:before {
  left: 50%;
}

.fInput-container span:after {
  right: 50%;
}

.fInput-container.focus label {
  top: 1px;
  transform: translateY(-50%);
  left: 30px;
  font-size: 14px;
}

.fInput-container.focus span:before,
.fInput-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.add_limit_status {
  font-size: 16px;
}

.add_limit_status .count {
  display: inline-flex;
  width: 34px;
  height: 34px;
  justify-content: center;
  align-items: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
}




/* Profile Share  */

/* Profile Share Modal  */
#modal-share .modal-header {
  display: block;
  background: #fff;
  border-radius: 3px;
  text-align: center;
}

#modal-share .modal-dialog {
  max-width: 600px;
}

#modal-share .modal-content {
  box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  border: none;
}

#modal-share .modal-header .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #000 !important;
  font-weight: 500;
  background-color: transparent;
  border: 0;
  --webkit-appearance: none;
}

#modal-share .modal-title {
  padding-right: 20px;
  padding-left: 20px;
  font-weight: normal;
  font-size: 24px;
  margin-bottom: 6px;

}

#modal-share p {
  font-size: 16px;
  line-height: 1.4;
  color: var(--font);
  margin-bottom: 15px;
}

#modal-share li {
  margin-bottom: 10px;
  color: #fff;
}

#modal-share li a {
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  max-width: 300px;
}

#modal-share li a.btn-facebook {
  background: #3b5998;
}

#modal-share li a.btn-twitter {
  background: #00acee;
}

#modal-share li a.btn-linkedin {
  background: #0e76a8;
}

#modal-share .copy_link input {
  font-size: 14px;
}