/* GearLocker Support Center — customized Minimal Template */

/*
   GearLocker Brand Tokens
   -----------------------
   Dark text:          #1e1715
   Dark text (alt):    #1d1815
   Grey text:          #919191
   Accent (CTA):       #ee362f
   Accent hover:       #d62c25
   Border:             #e6e6e6
   Border alt:         #e8e7e7
   Light bg:           #f8f8f8
   White bg:           #ffffff
   Error:              #D60000
*/


/* Typography — Canada Type Gibson (matches gearlocker.com) */

@import url('https://use.typekit.net/jys7hta.css');

body,
input,
button,
select,
textarea {
    font-family: 'canada-type-gibson', sans-serif;
    font-weight: 300;
    color: #1e1715;
}

body {
    background-color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
}

strong {
    font-weight: 500;
    color: #1e1715;
}

em {
    color: #1e1715;
}

/* Container Width */

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


/* ---------------- Navbar ---------------- */

/* Logo — matches gearlocker.com header: ~165px wide, left-aligned */

.navbar .brand {
    background: url(https://gearlocker.com/assets/images/logo.svg) no-repeat;
    background-size: 165px auto;
    background-position: 0 50%;
    max-width: 165px;
    width: 165px;
    height: 35px;
    padding: 30px 0;
    margin-left: 0;
    margin-right: 0;
}

.navbar .brand span {
    display: none;
}

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

.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e8e7e7;
}

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

.navbar .nav li a {
    font-size: 17px;
    line-height: 20px;
    color: #1d1815;
    font-weight: 300;
    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 {
    color: #ee362f;
    transition: 0.3s;
}

img[Attributes Style] {
    width: 100%;
    height: 100%;
}

/* Contact Us Button — accent red, matches main site CTA */

#contact a {
    background-color: #ee362f;
    border-radius: 8px;
    color: #fff !important;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    padding: 14px 23px 16px;
    border: 1px solid #ee362f;
    transition: 0.3s;
    margin-left: 15px;
}

#contact a:hover {
    background-color: #d62c25;
    border: 1px solid #d62c25;
    color: #fff !important;
    transition: 0.3s;
}

/* Navbar Media Queries */

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

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

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

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

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

/* Mobile Navbar */

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

    .navbar .brand {
        background-size: 130px auto;
        background-position: 0 50%;
        max-width: 130px;
        width: 130px;
        height: 28px;
        padding: 22px 0;
    }

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

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

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

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

/* ---------------- Search / Hero ---------------- */

#docsSearch {
    border-bottom: 0px;
    padding: 80px 24px 140px;
    background-color: #f8f8f8;
    margin-bottom: 120px;
}

#docsSearch h1 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1e1715;
    max-width: 640px;
    position: relative;
    margin: auto;
    float: none;
}

/* Search Style Hero */

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

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

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

#searchBar button:hover {
    background-color: #d62c25;
    transition: 0.3s;
}

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

:-ms-input-placeholder {
    color: #919191 !important;
}

/* Focus Search */

input:focus, input[type=text]:focus {
    border: 1px solid #ee362f !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: #1e1715;
    transition: 0.3s;
}

#serp-dd .result > li.active {
    background: #f8f8f8;
    color: #1e1715;
}

#serp-dd .result a:hover {
    background: #f8f8f8;
    color: #1e1715;
    transition: 0.3s;
}


/* Media Queries Mobile Hero */

@media only screen and (min-width: 200px) and (max-width: 500px) {
    #docsSearch {
        padding: 70px 24px 110px;
        margin-bottom: 60px;
    }

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

    #docsSearch h1 {
        font-size: 34px;
        line-height: 1.14;
        letter-spacing: -0.03em;
    }

    #searchBar button span {
        display: none;
    }

    #searchBar {
        width: 100%;
    }

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

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

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

/* ---------------- Categories ---------------- */

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

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

.collection-category h2 {
    font-size: 34px;
    line-height: 1.14;
    color: #1e1715;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.collection-category h2 a {
    font-size: 34px;
    line-height: 1.14;
    color: #1e1715;
    font-weight: 600;
    letter-spacing: -0.03em;
    text-align: left;
}

h2 {
    font-size: 34px;
    line-height: 1.14;
    color: #1e1715;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.category-list h3 {
    color: #1e1715;
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
}

.category-list .category p {
    font-size: 16px;
    line-height: 26px;
    color: #919191;
    font-weight: 300;
}

.category-list .category .article-count {
    color: #ee362f;
    font-size: 16px;
    line-height: 22px;
    transition: 0.3s;
    font-weight: 500;
    text-decoration: none;
}

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

/* Category Thumbnails (unchanged URLs) */

#category-6 { 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-20 { background-image: url('https://i.ibb.co/NmgbxMW/user-management-background-category.png'); }
#category-31 { background-image: url('https://i.ibb.co/wKWdLpw/integrations-background-category.png'); }
#category-32 { background-image: url('https://i.ibb.co/pJnXdzC/others-background-category.png'); }
#category-22 { background-image: url('https://i.ibb.co/h8b8jRQ/app-downloads-background-category.png'); }
#category-36 { 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 {
    text-align: left;
    display: inline-block;
    border: 1px solid #e8e7e7;
    border-radius: 10px;
    box-shadow: none;
    margin: 0 .8% 20px;
    padding: 160px 32px 100px;
    transition: all 0.25s ease-in-out;
    background-repeat: no-repeat;
    background-position: center 36px;
    background-size: 80px 80px;
    max-width: 74%;
    width: 100%;
    background-color: #ffffff;
}

.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 (min-width: 1105px) {
    .category-list .category {
        max-width: 84%;
        width: 100%;
    }
}

.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: #ffffff;
    box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.07);
    border: 1px solid #e8e7e7;
    transition: 0.3s;
}

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


/* Media Queries Section Cards */

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

@media only screen and (min-width: 200px) and (max-width: 1170px) {
    .category-list { grid-template-columns: repeat(2, 1fr); }
    .category-list .category { max-width: 79%; }
}

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

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

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

/* ---------------- Footer ---------------- */

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

footer p {
    margin: 0px;
    font-size: 15px;
    line-height: 26px;
    color: #919191;
    text-align: center;
    font-weight: 300;
}

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

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

/* ---------------- Sidebar (Category / Article pages) ---------------- */

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

#sidebar form .search-query {
    border: 1px solid #e6e6e6;
    background-color: #ffffff;
    box-shadow: none;
    border-radius: 8px;
    font-size: 16px;
    line-height: 18px;
    color: #1e1715;
    padding: 0px 15px 0px 15px;
    height: 52px;
    margin-bottom: 30px;
    background: url(https://i.ibb.co/zQCydst/icon-search-minimal-template.png) #ffffff;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 94% 43%;
}

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

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

/* Sidebar Text Style */

#sidebar h3 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
    color: #1e1715;
    text-transform: none;
}

#sidebar .nav-list .active a {
    color: #ee362f;
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    text-decoration: none;
    transition: 0.3s;
}

#sidebar .nav-list a {
    font-size: 17px;
    line-height: 22px;
    color: #1d1815;
    padding: 10px 0px;
    transition: 0.3s;
    text-decoration: none;
    font-weight: 300;
}

#sidebar .nav-list a:hover {
    color: #ee362f;
    transition: 0.3s;
    text-decoration: none;
}

#sidebar form .search-query:focus {
    border: 1px solid #ee362f;
    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: 16px;
    color: #919191;
    margin-top: 25px;
    font-weight: 300;
}

.contentWrapper h1 {
    font-size: 38px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1e1715;
}

/* Icon Arrow Sidebar */

[class^=icon-] {
    color: #1e1715;
    font-size: 18px;
    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: #ee362f !important;
}

.icon-arrow:before {
    color: #1e1715;
}

/* Right Content */

.contentWrapper {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e8e7e7;
    box-shadow: none;
    padding: 50px 60px 72px;
}

#main-content {
    background: none;
}

/* Right Content Text */

#categoryHead h1 {
    font-size: 38px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1e1715;
}

.articleList li {
    font-size: 16px;
    line-height: 26px;
    color: #1e1715;
    font-weight: 300;
}

.contentWrapper a {
    color: #1e1715;
}

.icon-article-doc:before {
    color: #ee362f;
}

.articleList a span {
    transition: 0.3s;
}

.articleList a span:hover {
    text-decoration: none;
    color: #ee362f;
    transition: 0.3s;
}

.contentWrapper a:hover {
    color: #ee362f;
    transition: 0.3s;
}

/* Search Results */

#serp-dd.sb {
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    top: 60px;
    box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.07);
    font-size: 16px;
    line-height: 18px;
    color: #1e1715;
}

#serp-dd {
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    top: 150%;
    box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.07);
    font-size: 16px;
    line-height: 18px;
    color: #1e1715;
}

/* Select */

#categoryHead .sort select {
    width: 160px;
    height: 35px;
    margin: 0;
    line-height: 24px;
    font-size: 13px;
    color: #919191;
}

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

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

/* Media Queries Sidebar */

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

    #searchBar {
        max-width: 100%;
    }

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

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

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

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

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

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

/* ---------------- Article Page ---------------- */

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

/* Article Edit Button */

#fullArticle .admin-edit {
    color: #fff;
    display: inline-block;
    margin-bottom: 22px;
    background-image: none;
    background-color: #ee362f;
    text-shadow: none;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    transition: 0.3s;
}

#fullArticle .admin-edit:hover {
    background-color: #d62c25;
    transition: 0.3s;
}

/* Article Text */

#fullArticle h1,
#fullArticle h2,
#fullArticle h3,
#fullArticle h4,
#fullArticle h5 {
    color: #1e1715;
    font-weight: 600;
}

#fullArticle .title {
    font-size: 38px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.02em;
}

#fullArticle h2 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.02em;
}

#fullArticle,
#fullArticle p,
#fullArticle ul,
#fullArticle ol,
#fullArticle li,
#fullArticle div,
#fullArticle blockquote,
#fullArticle dd,
#fullArticle table {
    font-size: 17px;
    line-height: 1.65;
    color: #1e1715;
    font-weight: 300;
}

#fullArticle strong {
    color: #1e1715;
    font-weight: 500;
}

.contentWrapper a {
    color: #ee362f;
    transition: 0.3s;
}

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

#fullArticle blockquote {
    font-style: normal;
    border-left-color: #ee362f;
    border-width: 4px;
    padding: 24px 32px;
    background: #f8f8f8;
    border-radius: 8px;
}

pre {
    background-color: #f8f8f8;
    color: #1e1715;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
}

#fullArticle pre,
#fullArticle code {
    font-size: 15px;
    line-height: 1.55;
    color: #1e1715;
}

.articleFoot p,
.articleFoot time {
    font-family: 'canada-type-gibson', sans-serif;
    font-style: normal;
    color: #919191;
    font-size: 15px;
    font-weight: 300;
}

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

#sbContact:hover {
    color: #d62c25;
    transition: 0.3s;
}

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

.icon-print {
    transition: 0.3s;
}

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

/* Media Queries Icon */

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

@media (min-width: 200px) and (max-width: 1150px) {
    #fullArticle .printArticle { right: 15px !important; }
}

/* Article Image */

#fullArticle img {
    border: none;
    border-radius: 10px;
    padding: 0px;
}

/* Mobile Article */

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

    #fullArticle .title {
        font-size: 30px;
        line-height: 1.14;
    }

    #fullArticle h2 {
        font-size: 24px;
        line-height: 1.2;
    }

    .articleFoot time.lu {
        float: left;
    }

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

/* ---------------- Related Articles ---------------- */

.related {
    background: #f8f8f8;
    border-radius: 10px;
    border: 1px solid #e8e7e7;
    box-shadow: none;
    padding: 56px 36px;
    margin-top: 40px;
}

.related h3 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
    color: #1e1715;
    text-transform: none;
}

.related ul > li {
    font-size: 16px;
    line-height: 26px;
    color: #1e1715;
    transition: 0.3s;
    font-weight: 300;
}

.related ul > li a {
    color: #1e1715;
    transition: 0.3s;
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
}

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

.related a:hover {
    color: #ee362f;
    transition: 0.3s;
}

/* ---------------- Contact Modal ---------------- */

#contactModal,
.abuse {
    border: 1px solid #e8e7e7;
    box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    top: 6%;
}

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

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

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

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

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

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

/* Modal Text */

#contactModal h2,
.abuse h2 {
    padding: 50px 0 15px 50px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: none;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1e1715;
}

.form-horizontal .control-label {
    font-size: 15px;
    line-height: 26px;
    color: #1e1715;
    font-weight: 500;
}

input[type=text] {
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    box-shadow: none;
    background-color: #fff;
    height: 44px;
    font-size: 15px;
    line-height: 16px;
    color: #1e1715;
    padding: 4px 14px;
    width: 95%;
    font-weight: 300;
}

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

.form-horizontal textarea {
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    box-shadow: none;
    background-color: #fff;
    height: 44px;
    font-size: 15px;
    line-height: 16px;
    color: #1e1715;
    padding: 8px 14px;
    width: 95%;
    font-weight: 300;
}

.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 {
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    box-shadow: none;
    background-color: #ffffff;
    font-size: 15px;
    height: 44px;
    line-height: 16px;
    color: #1e1715;
    padding: 4px 14px;
    width: 95%;
    font-weight: 300;
}

#contactModal input[type=submit].btn {
    border-radius: 8px;
    background-color: #ee362f;
    font-size: 16px;
    line-height: 18px;
    border: none;
    background-image: none;
    width: 100%;
    height: 52px;
    text-shadow: none;
    color: #FFF;
    font-weight: 500;
    margin-top: 15px;
    transition: 0.3s;
}

#contactModal input[type=submit].btn:hover {
    background-color: #d62c25;
    transition: 0.3s;
}

/* Mobile Contact Form */

.modal {
    width: 650px;
}

@media (max-width: 768px) {
    button.btn,
    input[type=submit].btn {
        border-radius: 8px;
        background-color: #ee362f;
        font-size: 16px;
        line-height: 18px;
        border: none;
        background-image: none;
        width: 100%;
        height: 52px;
        text-shadow: none;
        color: #FFF;
        font-weight: 500;
        margin-top: 15px;
        transition: 0.3s;
    }

    button.btn,
    input[type=submit].btn:hover {
        background-color: #d62c25;
        transition: 0.3s;
    }

    label {
        padding: 0px;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom: none;
        font-size: 15px;
        line-height: 26px;
        font-weight: 500;
        color: #1e1715;
    }

    #contactForm #name,
    #contactForm #email,
    #contactForm #subject {
        border-radius: 8px;
        border: 1px solid #e6e6e6;
        box-shadow: none;
        background-color: #fff;
        font-size: 15px;
        height: 44px;
        line-height: 16px;
        color: #1e1715;
        padding: 4px 14px;
        width: 95%;
        font-weight: 300;
    }

    #contactForm #message {
        border-radius: 8px;
        border: 1px solid #e6e6e6;
        box-shadow: none;
        background-color: #fff;
        font-size: 15px;
        line-height: 16px;
        color: #1e1715;
        padding: 8px 14px;
        width: 95%;
        font-weight: 300;
    }

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

/* Form Focus */

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 #ee362f;
}

/* Close Button */

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

.modal #closeBtn:hover .icon-close:before {
    color: #ee362f;
    transition: 0.3s;
}

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

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

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

/* Form Error */

#contactModal .parsley-errors-list {
    font-size: 14px;
    margin-top: 10px;
    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 (max-width: 768px) {
    .modal-body {
        min-height: 730px;
    }
}
