/* Minimal Template Personalization */

/* 

   Navbar Background Color: #1B1B1B;
   Title Color: #222222;
   Paragraph Color: #565656;
   Links Color: #1B1B1B;
   Button Background Color: #1B1B1B;
   Border Color: #FAFAFA;
   Hover Color: rgba(27, 27, 27, 0.7);
   Box Shadow Cards: box-shadow: 0px 3px 18px rgba(30, 65, 155, 0.06);
   Box Shadow Search: box-shadow: 0px 5px 9px rgba(19, 71, 149, 0.08);
   Background Image Hero: url('https://i.ibb.co/mGsrXk7/search-icon.png');
   Category Image Example: url('https://i.ibb.co/pX5d6jC/getting-started-background-category.png');
   Icon Link Color: #1B1B1B;
   Article Icon Color: #222222;
   Background Blockquote: #FAFAFA;
   Close Button Contact: #1B1B1B;
   Background Quote: #FAFAFA;
   Bold Article Color: #222222;
   Error Message Color: #D60000;
   Placeholder Color: #565656;

*/

/* Typography */

/* @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;800&display=swap');

@font-face{
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
}

@font-face{
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
}

@font-face{
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 800;
} */

/* General Style CSS  */

:root {
  --font-size-small: 14px;
  --font-size-medium: 16px;
  --font-size-large: 18px;
  --font-size-xlarge: 24px;
  --color-callout-blue: #e0f7fa;
  --color-callout-green: #e8f5e9;
  --color-callout-main: #fff;
  --border-color-blue: #046d8d;
  --border-color-green: #388e3c;
  --border-color-main: #000;
}

body,
input,
button,
select,
textarea {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  font-size: var(--font-size-medium);
  line-height: 1.6;
  font-weight: 400;
}

body {
  background-color: #fcfcfc;
}

strong {
  font-weight: 800;
}

em {
  color: #1f2022;
}

/* Container Width */

.container-fluid {
  position: relative;
  max-width: 1234px;
  margin: 0 auto;
}

/* <style>
  #searchBar button { 
  background-color: black ;
  border: 1px solid #666;
  }
  #searchBar button:hover { 
  background-color: #666 ;
  border: 1px solid #666;
  }
  #mainNav .brand span {
      display: inline-block;
      text-indent: -9000px;
      width: 350px;
      height: 80px;
      background: url(https://images.squarespace-cdn.com/content/6138896b63a333020b834a60/3ff1c6b4-9b7a-4734-a468-7b78c9190fa4/mintt-helpscout.png?content-type=image%2Fpng) no-repeat 0 0;
      background-size: 100%;
  
  }
  </style> */

/* Navbar */

/* Navbar Logo */

.navbar .brand {
  width: 100%;
  max-width: 238px;
  padding: 74px 0 12px;
  background: url("https://images.squarespace-cdn.com/content/v1/6138896b63a333020b834a60/7f91a683-d98f-427c-b3cb-a7f8f5a1048c/mintt-small.png?format=1500w")
    no-repeat;
  background-size: 100%, auto;
  background-position: 63% 50%;
}

.navbar-inner {
  position: relative;
  max-width: 1234px;
  margin: 0 auto;
}

.navbar .brand span {
  display: none;
}

.navbar {
  background: white;
}

.navbar .navbar-inner {
  position: relative;
  z-index: 999;
  background: white;
  box-shadow: none;
}

.navbar .nav li a {
  font-size: 16px;
  line-height: 20px;
  color: #1b1b1b;
  transition: 0.3s;
}

.img {
  width: auto;
  height: 100%;
}

.navbar .nav .active .caret {
  display: none;
}

.navbar .brand,
.navbar .nav li a:hover,
.navbar .nav li a:focus,
.navbar .nav .active a,
.navbar .nav .active a:hover,
.navbar .nav .active a:focus {
  text-decoration: underline;
  color: #1b1b1b;
  transition: 0.3s;
}

/* Contact Us Button */
#contact a {
  background-color: #1b1b1b;
  border-radius: 6px;
  color: #fff !important;
  font-size: 16px;
  line-height: 18px;
  font-weight: 800;
  padding: 14px 23px 16px;
  border: 1px solid #1b1b1b;
  transition: 0.3s;
  margin-left: 15px;
}

#contact a:hover {
  background-color: rgb(27 27 27 / 70%);
  border: 1px solid rgb(27 27 27 / 70%);
  color: #fff !important;
  transition: 0.3s;
}

/* Navbar Media Queries */

@media (width >=769px) {
  .navbar .nav {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: auto;
    margin-right: 0;
  }
}

@media only screen and (width >=768px) and (width <=910px) {
  .navbar .nav li a {
    font-size: 15px;
    padding-left: 10px;
    padding-right: 10px;
  }

  #contact a {
    font-size: 15px;
    padding: 16px;
    margin-left: 0;
  }
}

@media only screen and (width >=768px) and (width <=800px) {
  .navbar .nav li a {
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
  }

  #contact a {
    font-size: 14px;
  }
}

/* Media Queries Button Mobile & Submenu */

@media (width <=768px) {
  .nav-collapse .nav {
    margin: 15px 0 30px;
  }

  .navbar .brand {
    padding: 75px 0 0;
    background-position: 61% 50%;
  }

  .navbar .btn-navbar {
    position: absolute;
    top: 9px;
  }

  .btn-navbar .icon-bar + .icon-bar {
    margin-top: 5px;
  }

  .navbar .btn-navbar .icon-bar {
    background: #1b1b1b !important;
    box-shadow: none !important;
    width: 25px !important;
    border-radius: 100px !important;
  }

  .navbar .nav li a {
    padding: 15px 0;
  }
}

/* Search Section Hero */

#docsSearch {
  border-bottom: 0;
  padding: 70px 24px 150px;
  background-color: #f4f4f3;
  margin-bottom: 150px;
}

#docsSearch h1 {
  position: relative;
  float: none;
  max-width: 580px;
  margin: auto;
  font-size: 56px;
  line-height: 64px;
  font-weight: 800;
  color: #222;
}

/* Search Style Hero */

#searchBar {
  max-width: 650px;
  padding: 32px 0;
}

#searchBar .search-query {
  float: left;
  width: 470px;
  height: 57px;
  padding: 25px 20px;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid lightgray;
  box-shadow: none;
  font-size: 18px;
  line-height: 18px;
  color: #565656;
  transition: 0.3s !important;
}

#searchBar button {
  position: absolute;
  top: 32px;
  right: 0;
  height: 57px;
  padding: 19px 40px;
  color: #fff;
  font-weight: 800;
  text-shadow: none;
  background: #1b1b1b;
  border-radius: 6px;
  border: 0;
  font-size: 18px;
  line-height: 18px;
  transition: 0.3s;
}

#searchBar button:hover {
  background-color: rgb(27 27 27 / 70%);
  transition: 0.3s;
}

::placeholder {
  color: #565656 !important;
}

:input-placeholder {
  color: #565656 !important;
}

/* Focus Search */

input:focus,
input[type="text"]:focus {
  border: 1px solid #1b1b1b !important;
  box-shadow: none;
  transition: 0.4s !important;
}

:focus {
  outline: none;
  transition: 0.4s !important;
}

/* Search Results */

#serp-dd .result a {
  padding: 10px 15px;
  font-size: 16px;
  color: #565656;
  transition: 0.3s;
}

#serp-dd .result > li.active {
  background: rgb(29 43 54 / 6%);
  color: #565656;
}

#serp-dd .result a:hover {
  background: rgb(29 43 54 / 6%);
  color: #565656;
  transition: 0.3s;
}

/* Media Queries Mobile Hero */

@media only screen and (width >=200px) and (width <=500px) {
  #docsSearch {
    padding: 80px 24px 140px;
    margin-bottom: 80px;
  }

  #collection-category-33 {
    margin-top: 50px;
  }

  #docsSearch h1 {
    font-size: 46px;
    line-height: 55px;
  }

  #searchBar button span {
    display: none;
  }

  #searchBar {
    width: 100%;
  }

  #searchBar .search-query {
    width: 100%;
    padding: 25px 24px;
    background-image: none;
  }

  #searchBar button .icon-search {
    display: block;
    color: #fff;
  }

  .icon-search::before {
    position: relative;
    bottom: 2px;
  }
}

/* Collection Title Hover & Focus */

.collection-category h2 a:hover {
  border-bottom: 0;
}

a:focus {
  outline: none;
  text-decoration: none;
}

/* Categories Text Style */

.collection-category h2 {
  font-size: 36px;
  line-height: 36px;
  color: #222;
  font-weight: 800;
}

.collection-category h2 a {
  font-size: 36px;
  line-height: 36px;
  color: #222;
  font-weight: 800;
  text-align: left;
}

h2 {
  font-size: 36px;
  line-height: 36px;
  color: #222;
  font-weight: 800;
}

.category-list h3 {
  color: #222;
  font-size: 24px;
  line-height: 30px;
  font-weight: 800;
}

.category-list .category p {
  font-size: 18px;
  line-height: 28px;
  color: #565656;
}

.category-list .category .article-count {
  color: #1b1b1b;
  font-size: 20px;
  line-height: 22px;
  transition: 0.3s;
  font-weight: 800;
  text-decoration: underline;
}

@media (width <=768px) {
  .collection-category h2 {
    text-align: left;
  }
}

/* Category Thumbnails */

#category-22,
#category-39 {
  background-image: url("https://i.ibb.co/nDMqzq4/getting-started-background-category.png");
}

#category-28 {
  background-image: url("https://i.ibb.co/qmjHWZy/account-management-background-category.png");
}

#category-29 {
  background-image: url("https://i.ibb.co/dcsxMmF/payment-and-billing-background-category.png");
}

#category-24 {
  background-image: url("https://i.ibb.co/NmgbxMW/user-management-background-category.png");
}

#category-29,
#category-45 {
  background-image: url("https://i.ibb.co/wKWdLpw/integrations-background-category.png");
}

#category-23,
#category-49 {
  background-image: url("https://i.ibb.co/pJnXdzC/others-background-category.png");
}

/* Category Thumbnails */

#category-38 {
  background-image: url("https://i.ibb.co/h8b8jRQ/app-downloads-background-category.png");
}

#category-25,
#category-50 {
  background-image: url("https://i.ibb.co/YWNM9Pq/feature-requests-background-category.png");
}

#category-37 {
  background-image: url("https://i.ibb.co/ZTdsW76/premium-support-background-category.png");
}

/* Categories Card Style */

.category-list .category {
  display: inline-block;
  width: 100%;
  max-width: 74%;
  padding: 160px 32px 100px;
  margin: 0 0.8% 20px;
  text-align: left;
  border: 1px solid #fafafa;
  border-radius: 6px;
  box-shadow: none;
  transition: all 0.25s ease-in-out;
  background-repeat: no-repeat;
  background-position: center 36px;
  background-size: 80px 80px;
  background-color: #fafafa;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 37px;
  margin-top: 32px;
}

#collection-category-33 {
  margin-top: 100px;
}

@media screen and (width >=1105px) {
  .category-list .category {
    width: 100%;
    max-width: 84%;
  }
}

.category-list .category,
.category-list .category {
  background-size: 85px;
}

.category-list .category,
.category-list .category:hover {
  background-repeat: no-repeat;
  background-position: 30px 50px;
  background-size: 85px;
}

.category-list .category:hover {
  background-color: #fafafa;
  box-shadow: none;
  border: 1px solid rgb(27 27 27 / 70%);
  transition: 0.3s;
}

.category-list .category:hover .article-count {
  color: #1b1b1b;
  transition: 0.3s;
}

/* Media Queries Section Cards */

@media only screen and (width >=200px) and (width <=1300px) {
  .category-list .category {
    max-width: 80%;
  }
}

@media only screen and (width >=200px) and (width <=1170px) {
  .category-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-list .category {
    max-width: 79%;
  }
}

@media only screen and (width >=200px) and (width <=940px) {
  .category-list .category {
    max-width: 70%;
  }
}

@media only screen and (width >=200px) and (width <=760px) {
  .category-list {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
  }

  .category-list .category {
    max-width: 84%;
  }
}

@media only screen and (width >=200px) and (width <=600px) {
  .category-list .category {
    max-width: 98%;
  }
}

/* Footer */

footer {
  padding: 30px 0;
  border-top: 1px solid #fafafa;
  margin-top: 83px;
}

/* Footer Text Style */

footer p {
  margin: 0;
  font-size: 14px;
  line-height: 28px;
  color: #565656;
  text-align: center;
}

footer p a {
  color: #565656;
  transition: 0.3s;
}

footer p a:hover {
  color: #1b1b1b;
  transition: 0.3s;
}

/* Interior Page Categories */

/* Search Bar & Sidebar CSS */

#searchBar.sm button .icon-search {
  display: none;
}

#sidebar form .search-query {
  height: 56px;
  padding: 0 15px;
  border: 1px solid lightgray;
  background-color: white;
  box-shadow: none;
  border-radius: 6px;
  font-size: 18px;
  line-height: 18px;
  color: #565656;
  margin-bottom: 30px;
  background: url("https://i.ibb.co/zQCydst/icon-search-minimal-template.png")
    #fafafa;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: 94% 43%;
}

#sidebar .nav-list {
  background-color: white;
  margin-top: 23px;
  margin-bottom: 0;
  box-shadow: none;
  border-radius: 6px;
  padding: 25px 28px 40px;
  border: 1px solid lightgray;
}

@media (width <=768px) {
  #sidebar form .search-query {
    background-size: 6%;
    background-position: 96% 42%;
  }
}

/* Sidebar Text Style */

#sidebar h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 800;
  color: #222;
  text-transform: capitalize;
}

#sidebar .nav-list .active a {
  color: #222;
  line-height: 22px;
  text-decoration: none;
  transition: 0.3s;
}

#sidebar .nav-list a {
  font-size: 18px;
  line-height: 22px;
  color: #1b1b1b;
  padding: 10px 0;
  transition: 0.3s;
}

#sidebar .nav-list a:hover {
  color: rgb(27 27 27 / 70%);
  transition: 0.3s;
}

#sidebar form .search-query:focus {
  border: 1px solid #1b1b1b;
  border-radius: 8px !important;
  transition: 0.3s !important;
  box-shadow: none;
}

#sidebar .nav-list .active a,
#sidebar .nav-list .active a:hover,
#sidebar .nav-list .active a:focus {
  transition: 0.3s;
}

.contentWrapper p.descrip {
  font-size: 18px;
  color: #565656;
  margin-top: 25px;
}

.contentWrapper h1 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 800;
  color: #222;
}

/* Icon Arrow Sidebar */

[class^="icon-"] {
  color: #222;
  font-size: 20px;
  line-height: 22px;
}

#sidebar .nav-list .active a .icon-arrow,
#sidebar .nav-list .active a:hover .icon-arrow,
#sidebar .nav-list .active a:focus .icon-arrow {
  color: #222 !important;
}

.icon-arrow::before {
  color: #222;
}

/* Right Content */

.contentWrapper {
  background: white;
  border-radius: 6px;
  border: 1px solid lightgray;
  box-shadow: none;
  padding: 50px 60px 72px;
}

#main-content {
  background: none;
}

/* Right Sidebar Text Style */

#categoryHead h1 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 800;
  color: #222;
}

.articleList li {
  font-size: 18px;
  line-height: 28px;
  color: #565656;
}

.articleList a {
  display: flex;
  align-items: center;
}

.icon-article-doc::before {
  content: "";
  background-image: url("https://d33v4339jhl8k0.cloudfront.net/docs/assets/65b10aa2f1b9f821350d13ae/images/65bf7f8d0b2b8f0dacd7fd28/mintt-favicon.png");
  width: 14px;
  height: 14px;
  display: inline-block;
  background-size: 14px 14px;
  margin-right: 6px;
}

.articleList a span {
  transition: 0.3s;
}

.articleList a span:hover {
  text-decoration: underline;
  color: rgb(27 27 27 / 70%);
  transition: 0.3s;
}

.contentWrapper a:hover {
  color: rgb(27 27 27 / 70%);
  transition: 0.3s;
  text-decoration: underline;
}

/* Search Resaults */

#serp-dd.sb {
  border: 1px solid #1b1b1b;
  border-radius: 8px;
  top: 60px;
  box-shadow: none;
  font-size: 16px;
  line-height: 18px;
  color: #565656;
}

#serp-dd {
  border: 1px solid #1b1b1b;
  border-radius: 8px;
  top: 150%;
  box-shadow: none;
  font-size: 16px;
  line-height: 18px;
  color: #565656;
}

/* Select */

#categoryHead .sort select {
  width: 160px;
  height: 35px;
  margin: 0;
  line-height: 24px;
  font-size: 13px;
  color: #565656;
  outline: unset;
  border: solid 1px #000;
  display: none;
}

select {
  border: 1px solid #fafafa;
  box-shadow: none;
}

@media (width <=768px) {
  #categoryHead .sort {
    display: none;
  }
}

/* Media Queries Sidebar */

@media (width <=768px) {
  #main-content {
    margin: 40px 0 2em;
  }

  #searchBar {
    max-width: 100%;
  }

  #categoryHead .sort {
    top: -52px;
  }

  #sidebar form {
    position: relative;
    margin: 40px 0;
  }

  .contentWrapper {
    border-radius: 8px;
    padding: 50px 28px 72px;
  }

  .related {
    border-radius: 8px !important;
    padding: 72px 28px !important;
  }

  .related h3 {
    padding-left: 0 !important;
  }

  .related ul {
    margin-left: 25px !important;
  }
}

/* Article Page */

#fullArticle {
  position: relative;
  max-width: 100%;
  margin: auto;
}

/* Article Button Edit */

#fullArticle .admin-edit {
  color: #fff;
  margin-bottom: 22px;
  background-image: none;
  background-color: #1b1b1b;
  text-shadow: none;
  border: none;
  border-radius: 11px;
  padding: 16px 32px;
  font-size: 18px;
  line-height: 18px;
  font-weight: 800;
  transition: 0.3s;
  display: none;
}

#fullArticle .admin-edit:hover {
  background-color: rgb(27 27 27 / 70%);
  transition: 0.3s;
}

/* Text Style Article */

#fullArticle h1,
#fullArticle h2,
#fullArticle h3,
#fullArticle h4,
#fullArticle h5 {
  color: #222;
}

#fullArticle .title {
  margin: 0 30px 1.5em 0;
  font-size: 30px;
  text-decoration: underline;
  text-underline-offset: 8px;
  line-height: 50px;
  font-weight: 800;
}

#fullArticle h2 {
  font-size: 24px;
  line-height: 40px;
  font-weight: 700;
  margin: 9px 0!important;
}

#fullArticle h3 {
  font-size: 18px;
}

#fullArticle,
#fullArticle p,
#fullArticle ol,
#fullArticle li,
#fullArticle div,
#fullArticle blockquote,
#fullArticle dd,
#fullArticle table {
  font-size: 16px!important;
  line-height: 28px;
  color: #242424;
  margin-bottom:9px;
}

#fullArticle ul {
  line-height: 20px;
  /*margin-top:1.5em;*/
}

#fullArticle .callout-blue p,
#fullArticle .callout-red p,
#fullArticle .callout-green p,
#fullArticle .callout-yellow p,
#fullArticle .private-note p {
  font-size: 16px!important;
}

#fullArticle .callout {
  margin-top: 1em !important;
  margin-bottom:1em!important;
}

#fullArticle strong {
  color: #222;
}

#fullArticle ol + p {
  margin: 0 0 9px 25px;
}


#fullArticle ul + p {
  margin: 0 0 9px 25px;
}


.articleRatings-question.articleRatings-question {
  font-size: var(--font-size-medium);
}

.articleFoot p {
  font-family: Manrope, sans-serif;
}

.contentWrapper a {
  color: #1b1b1b;
  text-decoration: underline;
  transition: 0.3s;
}

.contentWrapper a:hover {
  text-decoration: underline;
  color: rgb(27 27 27 / 70%);
  transition: 0.3s;
}

#fullArticle blockquote {
  font-style: normal;
  border-left-color: #1b1b1b;
  border-width: 10px;
  padding: 40px 42px;
  background: rgb(29 43 54 / 6%);
  border-radius: 8px;
}

pre {
  background-color: #edeeee;
  color: #565656;
  border: 1px solid #edeeee;
}

#fullArticle pre,
#fullArticle code {
  font-size: 18px;
  line-height: 28px;
  color: #565656;
}

.articleFoot p,
.articleFoot time {
  font-family: Manrope, sans-serif;
  font-style: normal;
  color: #565656;
  font-size: 14px;
}

#sbContact {
  color: #1b1b1b;
  border: none;
  transition: 0.3s;
}

#sbContact:hover {
  color: rgb(27 27 27 / 70%);
  transition: 0.3s;
}

#fullArticle .printArticle {
  position: absolute;
  top: -25px;
  right: -3%;
  transition: 0.3s;
}

.icon-print {
  display: none;
  transition: 0.3s;
}

#fullArticle .printArticle:hover .icon-print {
  color: #1b1b1b;
  transition: 0.3s;
}

#fullArticle ol + p + ul {
  margin-left: 50px;
}

td > ul + p {
  margin-left:0px!important;
}

/* Media Queries Icon */

@media (width >=200px) and (width <=1220px) {
  #fullArticle .printArticle {
    right: -2%;
  }
}

@media (width >=200px) and (width <=1150px) {
  #fullArticle .printArticle {
    right: 15px !important;
  }
}

/* Article Image */

#fullArticle img {
  border: none;
  border-radius: 24px;
  padding: 0;
  margin-top: 1em;
  margin-bottom:1em;
}

/* Media Queries */

@media (width <=768px) {
  #fullArticle .printArticle {
    top: -25px;
    right: -14px;
  }

  #fullArticle .title {
    margin: 0 30px 1.5em 0;
    font-size: 34px;
    line-height: 40px;
  }

  #fullArticle h2 {
    font-size: 20px;
    line-height: 32px;
  }

  .articleFoot time.lu {
    float: left;
  }

  .contentWrapper.withRelated {
    min-height: 205px;
    padding-bottom: 80px;
  }
}

/* Related Articles */
.related {
  background: white;
  border-radius: 6px;
  border: 1px solid lightgray;
  box-shadow: none;
  padding: 72px 36px;
  margin-top: 40px;
}

/* Related Text */
.related h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 800;
  color: #222;
  text-transform: capitalize;
}

.related ul > li {
  font-size: 18px;
  line-height: 28px;
  color: #1b1b1b;
  transition: 0.3s;
}

.related ul > li a {
  color: #1b1b1b;
  transition: 0.3s;
  font-size: 18px;
  line-height: 18px;
  text-decoration: none;
  text-underline-offset: 5px;
}

.related ul > li a:hover span {
  text-decoration: none;
}

.related a:hover {
  color: rgb(27 27 27 / 70%);
  transition: 0.3s;
}

/* Contact PopUp */
#contactModal,
.abuse {
  border: 1px solid #fafafa;
  box-shadow: 0 3px 18px rgb(30 65 155 / 6%);
  border-radius: 6px;
  top: 6%;
}

.modal-body {
  min-height: 630px;
  padding: 0 50px 60px;
}

#contactModal .control-label {
  float: left;
  width: 100%;
  text-align: left;
}

#contactModal .controls {
  margin-left: 0;
}

#contactModal .form-actions {
  padding-left: 0;
}

#contactModal #md-message {
  width: 100%;
  padding-top: 10px;
  height: 70px;
}

.form-actions::before,
.form-actions::after {
  display: none;
}

/* Contact PopUp Text */

#contactModal h2,
.abuse h2 {
  padding: 50px 0 15px 50px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom: none;
  font-size: 36px;
  line-height: 36px;
  font-weight: 800;
  color: #222;
}

.form-horizontal .control-label {
  font-size: 18px;
  line-height: 28px;
  color: #565656;
}

input[type="text"] {
  width: 95%;
  height: 40px;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid #cad8e3;
  box-shadow: none;
  background-color: #fff;
  font-size: 18px;
  line-height: 16px;
  color: #565656;
}

#contactModal input[type="file"] {
  height: 25px;
  padding: 18px 12px;
}

.form-horizontal textarea {
  width: 95%;
  height: 40px;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid #cad8e3;
  box-shadow: none;
  background-color: #fff;
  font-size: 14px;
  line-height: 16px;
  color: #565656;
}

.form-search input,
.form-inline input,
.form-horizontal input,
.form-search textarea,
.form-inline textarea,
.form-horizontal textarea,
.form-search select,
.form-inline select,
.form-horizontal select,
.form-search .help-inline,
.form-inline .help-inline,
.form-horizontal .help-inline,
.form-search .uneditable-input,
.form-inline .uneditable-input,
.form-horizontal .uneditable-input,
.form-search .input-prepend,
.form-inline .input-prepend,
.form-horizontal .input-prepend,
.form-search .input-append,
.form-inline .input-append,
.form-horizontal .input-append {
  width: 95%;
  height: 40px;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid #fafafa;
  box-shadow: none;
  background-color: #fafafa;
  font-size: 16px;
  line-height: 16px;
  color: #565656;
}

#contactModal input[type="submit"].btn {
  border-radius: 6px;
  background-color: #1b1b1b;
  font-size: 18px;
  line-height: 18px;
  border: none;
  background-image: none;
  width: 100%;
  height: 50px;
  text-shadow: none;
  color: #fff;
  font-weight: 800;
  margin-top: 15px;
  transition: 0.3s;
}

#contactModal input[type="submit"].btn:hover {
  background-color: rgb(27 27 27 / 70%);
  transition: 0.3s;
}

/* Form Mobile Contact Us */

.modal {
  width: 650px;
}

@media (width <=768px) {
  button.btn,
  input[type="submit"].btn {
    border-radius: 11px;
    background-color: #1b1b1b;
    font-size: 18px;
    line-height: 18px;
    border: none;
    background-image: none;
    width: 100%;
    height: 50px;
    text-shadow: none;
    color: #fff;
    font-weight: 800;
    margin-top: 15px;
    transition: 0.3s;
  }

  button.btn,
  input[type="submit"].btn:hover {
    background-color: rgb(27 27 27 / 70%);
    transition: 0.3s;
  }

  label {
    padding: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom: none;
    font-size: 18px;
    line-height: 36px;
    font-weight: 800;
    color: #222;
  }

  #contactForm #name,
  #contactForm #email,
  #contactForm #subject {
    width: 95%;
    height: 40px;
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid #fff;
    box-shadow: none;
    background-color: #fff;
    font-size: 16px;
    line-height: 16px;
    color: #565656;
  }

  #contactForm #message {
    width: 95%;
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid #fff;
    box-shadow: none;
    background-color: #fff;
    font-size: 14px;
    line-height: 16px;
    color: #565656;
  }

  #contactForm input[type="file"] {
    width: 95%;
    height: 25px;
    padding: 18px 12px;
    border-radius: 6px;
    border: 1px solid #fff;
    box-shadow: none;
    background-color: #fff;
  }
}

/* Focus Form */

textarea:focus,
input:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  box-shadow: none;
}

textarea:focus {
  border: 1px solid #1b1b1b;
}

/* Close Buttton */

.icon-close::before,
.featherlight-close-icon::before {
  display: none;
}

.modal #closeBtn:hover .icon-close::before {
  color: rgb(27 27 27 / 70%);
  transition: 0.3s;
}

.modal #closeBtn {
  top: 30px;
  right: 30px;
}

#contactModal .icon-close {
  position: relative;
  right: 50%;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("https://i.ibb.co/SKf8x0k/close-button-minimal-template.png");
  background-size: cover;
  opacity: 0.7;
  transition: opacity 0.2s;
}

#contactModal .icon-close:hover {
  opacity: 1;
}

/* Error Message Form */

#contactModal .parsley-errors-list {
  font-size: 16px;
  margin-top: 16px;
  color: #d60000;
}

#contactModal .parsley-error:not([type="file"]),
#contactForm .parsley-error:not([type="file"]),
.abuse .parsley-error:not([type="file"]) {
  border: 1px solid #d60000;
}

/* Media Queries */

@media (width <=768px) {
  .modal-body {
    min-height: 730px;
  }
}




