/*==================================================================
                            01.Common css
==================================================================*/

@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap');
@import url("https://fonts.googleapis.com/css?family=Rubik:300,400,500,700,900&amp;display=swap");
@import url('https://fonts.googleapis.com/css2?family=Akshar&display=swap');

/*
font-family: 'Akshar', sans-serif;
*/

html {
    scroll-behavior: smooth;
}

html,
body {
    display: grid;
    height: 100%;
}

body {
    font-family: "Rubik", sans-serif;
    font-weight: normal;
    font-style: normal;
    color: rgba(0, 0, 0, 0.64);
    background-color: #f2f2f2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

.btn-close:focus,
*:focus {
    outline: none;
    box-shadow: none;
}

img {
    max-width: 100%;
}

img.logo {
    height: 80px;
    width: auto
}

@media (max-width: 767px) {
    img.logo {
        height: 50px;
        width: auto
    }
}

img.imgtab {
    max-width: 100%;
}

@media (max-width: 767px) {
    img.imgtab {
        max-width: 70%;
    }
}

.nav-link.mouse-enter {
    margin-left: 0px;
    padding-left: 5px;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
    text-decoration: none;
    outline: none;
}

button {
    transition: all 0.3s linear;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

a,
i,
span {
    display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Rubik", sans-serif;
    color: #000;
    margin: 0;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.64);
    margin: 0;
}

.bg_cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

select,
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 30px;
}

.select-position {
    position: relative;
}

.select-position::after {
    border-bottom: 2px solid #d1d1d1;
    border-right: 2px solid #d1d1d1;
    content: '';
    display: block;
    height: 8px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 0px;
    top: 50%;
    transform-origin: 66% 66%;
    transform: rotate(45deg);
    transition: all 0.15s ease-in-out;
    width: 8px;
}

select {
    background: transparent;
    padding: 0 10px;
    padding-right: 30px;
    border: none;
}

select:focus {
    outline: none;
}


/*==================================================================
                          03.Colors css
==================================================================*/


/*========== White Color =========*/

.white-color {
    color: #fff;
}

.white-variant {
    color: #FAFAFA;
}

.white-light {
    color: #F2F2F2;
}

.bg-white-color {
    background-color: #fff;
}

.bg-white-variant {
    background-color: #FAFAFA;
}

.bg-white-light {
    background-color: #F2F2F2;
}


/*========== Dark Color =========*/

.dark-color {
    color: #000;
}

.dark-variant {
    color: #4C4C4C;
}

.dark-light {
    color: #7D7D7D;
}

.bg-dark-color {
    background-color: #000;
}

.bg-dark-variant {
    background-color: #4C4C4C;
}

.bg-dark-light {
    background-color: #7D7D7D;
}


/*========== Gray Color =========*/

.gray-1 {
    color: #828282;
}

.gray-2 {
    color: #BDBDBD;
}

.gray-3 {
    color: #D1D1D1;
}

.gray-4 {
    color: #EFEFEF;
}

.bg-gray-1 {
    background-color: #828282;
}

.bg-gray-2 {
    background-color: #BDBDBD;
}

.bg-gray-3 {
    background-color: #D1D1D1;
}

.bg-gray-4 {
    background-color: #EFEFEF;
}


/*========== Primary Shades Color =========*/

.primary-1 {
    color: #81B3E0;
}

.primary-2 {
    color: #001AD8;
}

.primary-3 {
    color: #4529E7;
}

.primary-4 {
    color: #754FF1;
}

.primary-5 {
    color: #9270F3;
}

.primary-6 {
    color: #B39BF6;
}

.primary-7 {
    color: #D2C3F9;
}

.bg-primary-1 {
    background-color: #81B3E0;
}

.bg-primary-2 {
    background-color: #001AD8;
}

.bg-primary-3 {
    background-color: #4529E7;
}

.bg-primary-4 {
    background-color: #754FF1;
}

.bg-primary-5 {
    background-color: #9270F3;
}

.bg-primary-6 {
    background-color: #B39BF6;
}

.bg-primary-7 {
    background-color: #D2C3F9;
}


/*========== Primary Color =========*/

.primary-color {
    color: #542DED;
}

.primary-variant {
    color: #2A21DE;
}

.primary-light {
    color: #EEE6FD;
}

.bg-primary-color {
    background-color: #542DED;
}

.bg-primary-variant {
    background-color: #2A21DE;
}

.bg-primary-light {
    background-color: #EEE6FD;
}


/*========== Secondary 1 Color =========*/

.secondary-1-color {
    color: #E14C7B;
}

.secondary-1-variant {
    color: #B62F5C;
}

.secondary-1-light {
    color: #FAE5EC;
}

.bg-secondary-1-color {
    background-color: #E14C7B;
}

.bg-secondary-1-variant {
    background-color: #B62F5C;
}

.bg-secondary-1-light {
    background-color: #FAE5EC;
}


/*========== Secondary 2 Color =========*/

.secondary-2-color {
    color: #00D4E0;
}

.secondary-2-variant {
    color: #81B3E0;
}

.secondary-2-light {
    color: #DFFAFA;
}

.bg-secondary-2-color {
    background-color: #00D4E0;
}

.bg-secondary-2-variant {
    background-color: #81B3E0;
}

.bg-secondary-2-light {
    background-color: #DFFAFA;
}


/*========== Secondary 3 Color =========*/

.secondary-3-color {
    color: #393D8E;
}

.secondary-3-variant {
    color: #161359;
}

.secondary-3-light {
    color: #E6E7F1;
}

.bg-secondary-3-color {
    background-color: #393D8E;
}

.bg-secondary-3-variant {
    background-color: #161359;
}

.bg-secondary-3-light {
    background-color: #E6E7F1;
}


/*========== Success Color =========*/

.success-color {
    color: #7CB637;
}

.success-variant {
    color: #548E24;
}

.success-light {
    color: #F1F8E8;
}

.bg-success-color {
    background-color: #7CB637;
}

.bg-success-variant {
    background-color: #548E24;
}

.bg-success-light {
    background-color: #F1F8E8;
}


/*========== Info Color =========*/

.info-color {
    color: #00C2FE;
}

.info-variant {
    color: #0097EF;
}

.info-light {
    color: #D8F5FF;
}

.bg-info-color {
    background-color: #00C2FE;
}

.bg-info-variant {
    background-color: #0097EF;
}

.bg-info-light {
    background-color: #D8F5FF;
}


/*========== Caution Color =========*/

.caution-color {
    color: #FFBE27;
}

.caution-variant {
    color: #F97C14;
}

.caution-light {
    color: #FFFDE6;
}

.bg-caution-color {
    background-color: #FFBE27;
}

.bg-caution-variant {
    background-color: #F97C14;
}

.bg-caution-light {
    background-color: #F1F8E8;
}


/*========== Error Color =========*/

.error-color {
    color: #FF4B22;
}

.error-variant {
    color: #CA2D0E;
}

.error-light {
    color: #FBE8E7;
}

.bg-error-color {
    background-color: #FF4B22;
}

.bg-error-variant {
    background-color: #CA2D0E;
}

.bg-error-light {
    background-color: #FBE8E7;
}


/*========== Primary Gradients Color =========*/

.primary-gradient-1 {
    background: linear-gradient(#542DED 0%, #2A21DE 100%);
    background: linear-gradient(#542DED 0%, #2A21DE 100%);
}

.primary-gradient-2 {
    background: linear-gradient(#542DED 0%, #EEE6FD 100%);
}

.primary-gradient-3 {
    background: linear-gradient(#542DED 0%, #E14C7B 100%);
}

.primary-gradient-4 {
    background: linear-gradient(#542DED 0%, #00D4E0 100%);
}

.primary-gradient-5 {
    background: linear-gradient(#542DED 0%, #00C2FE 100%);
}

.primary-gradient-6 {
    background: linear-gradient(#542DED 0%, #9270F3 100%);
}

.primary-gradient-7 {
    background: linear-gradient(#542DED 0%, #4C4C4C 100%);
}


/*========== Secondary Gradients Color =========*/

.secondary-gradient-1 {
    background: linear-gradient(#E14C7B 0%, #B62F5C 100%);
}

.secondary-gradient-2 {
    background: linear-gradient(#E14C7B 0%, #FAE5EC 100%);
}

.secondary-gradient-3 {
    background: linear-gradient(#E14C7B 0%, #00D4E0 100%);
}

.secondary-gradient-4 {
    background: linear-gradient(#E14C7B 0%, #393D8E 100%);
}

.secondary-gradient-5 {
    background: linear-gradient(#E14C7B 0%, #00C2FE 100%);
}

.secondary-gradient-6 {
    background: linear-gradient(#E14C7B 0%, #F97C14 100%);
}

.secondary-gradient-7 {
    background: linear-gradient(#E14C7B 0%, #4C4C4C 100%);
}


/*========== Accent Gradients Color =========*/

.accent-gradient-1 {
    background: linear-gradient(#00D4E0 0%, #81B3E0 100%);
}

.accent-gradient-2 {
    background: linear-gradient(#00D4E0 0%, #DFFAFA 100%);
}

.accent-gradient-3 {
    background: linear-gradient(#00D4E0 0%, #393D8E 100%);
}

.accent-gradient-4 {
    background: linear-gradient(#00D4E0 0%, #00C2FE 100%);
}

.accent-gradient-5 {
    background: linear-gradient(#00D4E0 0%, #F97C14 100%);
}

.accent-gradient-6 {
    background: linear-gradient(#00D4E0 0%, #FF4B22 100%);
}

.accent-gradient-7 {
    background: linear-gradient(#00D4E0 0%, #4C4C4C 100%);
}


/*========== Success Gradients Color =========*/

.success-gradient-1 {
    background: linear-gradient(#7CB637 0%, #548E24 100%);
}

.success-gradient-2 {
    background: linear-gradient(#7CB637 0%, #F1F8E8 100%);
}

.success-gradient-3 {
    background: linear-gradient(#7CB637 0%, #000 100%);
}


/*========== Info Gradients Color =========*/

.info-gradient-1 {
    background: linear-gradient(#00C2FE 0%, #0097EF 100%);
}

.info-gradient-2 {
    background: linear-gradient(#00C2FE 0%, #D8F5FF 100%);
}

.info-gradient-3 {
    background: linear-gradient(#00C2FE 0%, #000 100%);
}


/*========== Caution Gradients Color =========*/

.caution-gradient-1 {
    background: linear-gradient(#FFBE27 0%, #F97C14 100%);
}

.caution-gradient-2 {
    background: linear-gradient(#FFBE27 0%, #FFFDE6 100%);
}

.caution-gradient-3 {
    background: linear-gradient(#FFBE27 0%, #000 100%);
}


/*========== Error Gradients Color =========*/

.error-gradient-1 {
    background: linear-gradient(#FF4B22 0%, #CA2D0E 100%);
}

.error-gradient-2 {
    background: linear-gradient(#FF4B22 0%, #FBE8E7 100%);
}

.error-gradient-3 {
    background: linear-gradient(#FF4B22 0%, #000 100%);
}


/*==========  Color Page Style =========*/

.color-plat-wrapper {
    border-radius: 10%;
}

.color-plat-wrapper .color-plat-1 {
    margin-top: 25px;
}

.color-plat-wrapper .color-plat-1 .color-plat-box {
    width: 56px;
    height: 56px;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .color-plat-wrapper .color-plat-1 .color-plat-box {
        width: 32px;
        height: 32px;
        border-radius: 4px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .color-plat-wrapper .color-plat-1 .color-plat-box {
        width: 56px;
        height: 56px;
        border-radius: 10px;
    }
}

.color-plat-wrapper .color-plat-1 .color-plat-name {
    padding-left: 20px;
}

@media (max-width: 767px) {
    .color-plat-wrapper .color-plat-1 .color-plat-name {
        padding-left: 10px;
    }
}

.color-plat-text {
    padding: 5px 30px 15px;
    border-radius: 10px;
    margin-top: 30px;
}

.color-plat-text p {
    font-weight: 700;
    padding-top: 10px;
}

.color-plat-text .white-100 {
    color: #fff;
}

.color-plat-text .white-74 {
    color: rgba(255, 255, 255, 0.74);
}

.color-plat-text .white-60 {
    color: rgba(255, 255, 255, 0.6);
}

.color-plat-text .white-30 {
    color: rgba(255, 255, 255, 0.3);
}

.color-plat-text .black-100 {
    color: #000;
}

.color-plat-text .black-74 {
    color: rgba(0, 0, 0, 0.74);
}

.color-plat-text .black-60 {
    color: rgba(0, 0, 0, 0.6);
}

.color-plat-text .black-30 {
    color: rgba(0, 0, 0, 0.3);
}

.white-plate {
    background-color: #542DED;
    padding: 5px;
}

.gradients-wrapper {
    margin-left: -15px;
    margin-right: -15px;
}

div.sticky {
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    top: 0;
}

.gradients-wrapper .gradients-col {
    width: 14.28%;
    padding-left: 15px;
    padding-right: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .gradients-wrapper .gradients-col {
        width: 20%;
    }
}

@media (max-width: 767px) {
    .gradients-wrapper .gradients-col {
        width: 50%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .gradients-wrapper .gradients-col {
        width: 33.33%;
    }
}

.single-gradient {
    border-radius: 8px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.25);
}

.single-gradient .gradients-box {
    width: 100%;
    height: 76px;
    border-radius: 8px;
}

.single-gradient .gradients-name {
    padding: 15px 20px;
}

.single-gradient .gradients-name .color-hex {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    position: relative;
    margin-top: 10px;
}

.single-gradient .gradients-name .color-hex span {
    width: 50%;
    right: 0;
    top: 0;
    height: 100%;
    position: absolute;
    border-radius: 5px;
}


/*==================================================================
                           04.Typography css
==================================================================*/


/*========== Heading =========*/

.heading-1 {
    font-size: 44px;
    line-height: 55px;
}

.heading-2 {
    font-size: 36px;
    line-height: 45px;
}

.heading-3 {
    font-size: 28px;
    line-height: 35px;
}

.heading-4 {
    font-size: 24px;
    line-height: 30px;
}

.heading-5 {
    font-size: 20px;
    line-height: 28px;
}

.heading-6 {
    font-size: 14px;
    line-height: 18px;
}


/*========== paragraph =========*/

.paragraph-large {
    font-size: 18px;
    line-height: 26px;
}

.paragraph {
    font-size: 16px;
    line-height: 22px;
}

.paragraph-small {
    font-size: 14px;
    line-height: 20px;
}

.paragraph-xsmall {
    font-size: 12px;
    line-height: 16px;
}


/*========== Font Weight =========*/

.display-1 {
    font-size: 88px;
    line-height: 110px;
}

.display-2 {
    font-size: 76px;
    line-height: 95px;
}

.display-3 {
    font-size: 64px;
    line-height: 80px;
}

.display-4 {
    font-size: 52px;
    line-height: 65px;
}


/*========== Font Weight =========*/

.font-weight-300 {
    font-weight: 300;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-500 {
    font-weight: 500;
}

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


/*=====  Typography Style =====*/


/*==================================================================
                           05. Buttons css
==================================================================*/


/*===== All Button Common Style =====*/

.main-btn {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 0;
    padding: 0 16px;
    font-size: 16px;
    font-weight: 500;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    z-index: 5;
    transition: all 0.4s linear;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    background-color: transparent;
}

@media (max-width: 767px) {
    .main-btn {
        padding: 0 14px;
        font-size: 14px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .main-btn {
        padding: 0 16px;
        font-size: 16px;
    }
}

.main-btn i {
    margin: 0 3px;
    font-size: 22px;
    line-height: 1;
    position: relative;
    top: 2px;
}

.main-btn img {
    margin: 0 5px 0 2px;
    width: 22px;
}

.main-btn::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    padding: 50%;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: -1;
    color: #fff;
    transform: translate3d(-50%, -50%, 0) scale(0);
    transition: all 0.4s linear;
}

.icon-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 24px;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 0;
    cursor: pointer;
    z-index: 5;
    transition: all 0.4s linear;
    position: relative;
    overflow: hidden;
}

.icon-btn img {
    width: 22px;
}

.icon-btn::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    padding: 50%;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: -1;
    color: #fff;
    transform: translate3d(-50%, -50%, 0) scale(0);
    transition: all 0.4s linear;
}

.btn-group>.main-btn:not(:last-child):not(.toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-group>.main-btn:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: -1px;
}

.btn-group.group-2>.main-btn:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.btn-group.group-2>.main-btn:not(:first-child):not(.toggle) {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}


/*===== Button Shadow Style =====*/

.btn-shadow {
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32);
}


/*===== Primary Button Style =====*/

.primary-icon,
.primary-btn {
    background-color: #542DED;
    color: #fff;
}

.primary-icon:hover,
.primary-btn:hover {
    color: #fff;
}

.primary-icon:hover::before,
.primary-btn:hover::before {
    transform: translate3d(-50%, -50%, 0) scale(1.5);
}

.primary-icon-border,
.primary-btn-border {
    border: 1px solid #542DED;
    color: #542DED;
    line-height: 38px;
}

.primary-icon-border:hover,
.primary-btn-border:hover {
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32);
    color: #542DED;
}

.primary-icon-text,
.primary-btn-text {
    color: #542DED;
}

.primary-icon-text:hover,
.primary-btn-text:hover {
    color: #542DED;
}


/*===== Secondary 1 Button Style =====*/

.secondary-1-icon,
.secondary-1-btn {
    background-color: #E14C7B;
    color: #fff;
}

.secondary-1-icon:hover,
.secondary-1-btn:hover {
    color: #fff;
}

.secondary-1-icon:hover::before,
.secondary-1-btn:hover::before {
    transform: translate3d(-50%, -50%, 0) scale(1.5);
}

.secondary-1-icon-border,
.secondary-1-btn-border {
    border: 1px solid #E14C7B;
    color: #E14C7B;
    line-height: 38px;
}

.secondary-1-icon-border:hover,
.secondary-1-btn-border:hover {
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32);
    color: #E14C7B;
}

.secondary-1-icon-text,
.secondary-1-btn-text {
    color: #E14C7B;
}

.secondary-1-icon-text:hover,
.secondary-1-btn-text:hover {
    color: #E14C7B;
}


/*===== Secondary 2 Button Style =====*/

.secondary-2-icon,
.secondary-2-btn {
    background-color: #00D4E0;
    color: #fff;
}

.secondary-2-icon:hover,
.secondary-2-btn:hover {
    color: #fff;
}

.secondary-2-icon:hover::before,
.secondary-2-btn:hover::before {
    transform: translate3d(-50%, -50%, 0) scale(1.5);
}

.secondary-2-icon-border,
.secondary-2-btn-border {
    border: 1px solid #00D4E0;
    color: #00D4E0;
}

.secondary-2-icon-border:hover,
.secondary-2-btn-border:hover {
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32);
    color: #00D4E0;
}

.secondary-2-icon-text,
.secondary-2-btn-text {
    color: #00D4E0;
}

.secondary-2-icon-text:hover,
.secondary-2-btn-text:hover {
    color: #00D4E0;
}


/*===== Secondary 3 Button Style =====*/

.secondary-3-icon,
.secondary-3-btn {
    background-color: #393D8E;
    color: #fff;
}

.secondary-3-icon:hover,
.secondary-3-btn:hover {
    color: #fff;
}

.secondary-3-icon:hover::before,
.secondary-3-btn:hover::before {
    transform: translate3d(-50%, -50%, 0) scale(1.5);
}

.secondary-3-icon-border,
.secondary-3-btn-border {
    border: 1px solid #393D8E;
    color: #393D8E;
}

.secondary-3-icon-border:hover,
.secondary-3-btn-border:hover {
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32);
    color: #393D8E;
}

.secondary-3-icon-text,
.secondary-3-btn-text {
    color: #393D8E;
}

.secondary-3-icon-text:hover,
.secondary-3-btn-text:hover {
    color: #393D8E;
}


/*===== Success Button Style =====*/

.success-icon,
.success-btn {
    background-color: #7CB637;
    color: #fff;
}

.success-icon:hover,
.success-btn:hover {
    color: #fff;
}

.success-icon:hover::before,
.success-btn:hover::before {
    transform: translate3d(-50%, -50%, 0) scale(1.5);
}

.success-icon-border,
.success-btn-border {
    border: 1px solid #7CB637;
    color: #7CB637;
}

.success-icon-border:hover,
.success-btn-border:hover {
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32);
    color: #7CB637;
}

.success-icon-text,
.success-btn-text {
    color: #7CB637;
}

.success-icon-text:hover,
.success-btn-text:hover {
    color: #7CB637;
}


/*===== Info Button Style =====*/

.info-icon,
.info-btn {
    background-color: #00C2FE;
    color: #fff;
}

.info-icon:hover,
.info-btn:hover {
    color: #fff;
}

.info-icon:hover::before,
.info-btn:hover::before {
    transform: translate3d(-50%, -50%, 0) scale(1.5);
}

.info-icon-border,
.info-btn-border {
    border: 1px solid #00C2FE;
    color: #00C2FE;
}

.info-icon-border:hover,
.info-btn-border:hover {
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32);
    color: #00C2FE;
}

.info-icon-text,
.info-btn-text {
    color: #00C2FE;
}

.info-icon-text:hover,
.info-btn-text:hover {
    color: #00C2FE;
}


/*===== Caution Button Style =====*/

.caution-icon,
.caution-btn {
    background-color: #FFBE27;
    color: #fff;
}

.caution-icon:hover,
.caution-btn:hover {
    color: #fff;
}

.caution-icon:hover::before,
.caution-btn:hover::before {
    transform: translate3d(-50%, -50%, 0) scale(1.5);
}

.caution-icon-border,
.caution-btn-border {
    border: 1px solid #FFBE27;
    color: #FFBE27;
}

.caution-icon-border:hover,
.caution-btn-border:hover {
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32);
    color: #FFBE27;
}

.caution-icon-text,
.caution-btn-text {
    color: #FFBE27;
}

.caution-icon-text:hover,
.caution-btn-text:hover {
    color: #FFBE27;
}


/*===== Error Button Style =====*/

.error-icon,
.error-btn {
    background-color: #FF4B22;
    color: #fff;
}

.error-icon:hover,
.error-btn:hover {
    color: #fff;
}

.error-icon:hover::before,
.error-btn:hover::before {
    transform: translate3d(-50%, -50%, 0) scale(1.5);
}

.error-icon-border,
.error-btn-border {
    border: 1px solid #FF4B22;
    color: #FF4B22;
}

.error-icon-border:hover,
.error-btn-border:hover {
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32);
    color: #FF4B22;
}

.error-icon-text,
.error-btn-text {
    color: #FF4B22;
}

.error-icon-text:hover,
.error-btn-text:hover {
    color: #FF4B22;
}


/*===== Gray Button Style =====*/

.gray-icon,
.gray-btn {
    background-color: #D1D1D1;
    color: #7D7D7D;
}

.gray-icon:hover,
.gray-btn:hover {
    color: #7D7D7D;
}

.gray-icon:hover::before,
.gray-btn:hover::before {
    transform: translate3d(-50%, -50%, 0) scale(1.5);
}

.gray-icon-border,
.gray-btn-border {
    border: 1px solid #7D7D7D;
    color: #7D7D7D;
}

.gray-icon-border:hover,
.gray-btn-border:hover {
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32);
    color: #7D7D7D;
}

.gray-icon-text,
.gray-btn-text {
    color: #7D7D7D;
}

.gray-icon-text:hover,
.gray-btn-text:hover {
    color: #7D7D7D;
}


/*===== White Button Style =====*/

.white-icon,
.white-btn {
    background-color: #fff;
    color: #542DED;
}

.white-icon:hover,
.white-btn:hover {
    color: #fff;
}

.white-icon:hover::before,
.white-btn:hover::before {
    transform: translate3d(-50%, -50%, 0) scale(1.5);
}

.white-icon-border,
.white-btn-border {
    border: 1px solid #fff;
    color: #fff;
}

.white-icon-border:hover,
.white-btn-border:hover {
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32);
    color: #fff;
}

.white-icon-text,
.white-btn-text {
    color: #fff;
}

.white-icon-text:hover,
.white-btn-text:hover {
    color: #fff;
}


/*=====  Icon Text Style =====*/

.icon-text-wrapper .icon-text-list {
    padding-top: 15px;
}

.icon-text-wrapper .icon-text-list li {
    display: inline-block;
}

.icon-text-wrapper .icon-text-list li+li {
    margin-left: 15px;
    margin-top: 15px;
}

.icon-text {
    height: 20px;
    line-height: 20px;
    padding: 0 8px;
    border-radius: 18px;
    font-weight: 500;
    font-size: 12px;
}

.icon-text.text-style-1 {
    background-color: #E14C7B;
    color: #fff;
}

.icon-text.text-style-2 {
    background-color: #B62F5C;
    color: #fff;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.25);
}

.icon-text.text-style-3 {
    color: #E14C7B;
    border: 1px solid #E14C7B;
    line-height: 18px;
}

.icon-text.text-style-4 {
    background-color: #fff;
    color: #E14C7B;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.25);
}

.icon-text.text-style-5 {
    color: #00D4E0;
    border: 1px solid #E14C7B;
    line-height: 18px;
}

.icon-text.text-style-6 {
    background-color: #fff;
    color: #00D4E0;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.25);
}

.icon-text.text-style-7 {
    color: #7CB637;
    border: 1px solid #E14C7B;
    line-height: 18px;
}

.icon-text.text-style-8 {
    background-color: #fff;
    color: #7CB637;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.25);
}


/*=====  Icon Text Button Style =====*/

.icon-text-btn {
    position: relative;
    overflow: visible;
}

.icon-text-btn .main-btn {
    text-transform: capitalize;
}

.icon-text-btn .icon-text {
    position: absolute;
    top: -7px;
    right: -8px;
    z-index: 5;
}


/*=====  Product Quantity Style =====*/

.product-quantity {
    overflow: hidden;
    border-radius: 4px;
}

.product-quantity button {
    width: 40px;
    height: 40px;
    padding: 0;
    font-size: 24px;
    border: 0;
    background-color: transparent;
    transition: all 0.4s linear;
}

.product-quantity input {
    width: 55px;
    height: 40px;
    border: 0;
    padding: 0 10px;
    text-align: center;
    font-weight: 700;
    background-color: transparent;
}

.product-quantity.quantity-1 {
    background-color: #542DED;
}

.product-quantity.quantity-1 button {
    color: rgba(255, 255, 255, 0.8);
}

.product-quantity.quantity-1 button:hover {
    color: #fff;
}

.product-quantity.quantity-1 input {
    color: #fff;
}

.product-quantity.quantity-2 {
    background-color: #fff;
    border: 1px solid #EFEFEF;
}

.product-quantity.quantity-2 button {
    color: rgba(0, 0, 0, 0.8);
}

.product-quantity.quantity-2 button:hover {
    color: #542DED;
}

.product-quantity.quantity-2 input {
    color: #000;
}


/*=====  Button Page Style =====*/

.buttons-list {
    margin-left: -15px;
    margin-right: -15px;
    display: inline-block;
}

.buttons-list>li {
    padding-left: 14px;
    padding-right: 14px;
    display: inline-block;
    margin-top: 30px;
}

.white-buttons .buttons-list {
    margin-left: 5px;
}

.white-buttons .buttons-list>li {
    background-color: #81B3E0;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-right: -4px;
}


/*==================================================================
                         07.Alert & Message css
==================================================================*/


/*===== All Alert Style =====*/

.alert {
    padding: 14px 16px;
    padding-right: 40px;
    margin-bottom: 0;
    font-size: 16px;
}

@media (max-width: 767px) {
    .alert {
        font-size: 14px;
        padding: 10px 12px;
        padding-right: 40px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .alert {
        font-size: 16px;
        padding: 14px 16px;
        padding-right: 40px;
    }
}

.alert.alert-dismissible .btn-close {
    padding: 9px 14px;
    font-size: 24px;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s linear;
}

@media (max-width: 767px) {
    .alert.alert-dismissible .btn-close {
        font-size: 20px;
        padding: 6px 12px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .alert.alert-dismissible .btn-close {
        font-size: 24px;
        padding: 9px 14px;
    }
}

.alert figure {
    margin-bottom: 0;
}

.alert figure i {
    font-size: 24px;
    line-height: 24px;
}

@media (max-width: 767px) {
    .alert figure i {
        font-size: 20px;
        line-height: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .alert figure i {
        font-size: 24px;
        line-height: 24px;
    }
}

.alert figure figcaption {
    padding-left: 10px;
}

.alert figure figcaption p {
    margin-top: 8px;
}

@media (max-width: 767px) {
    .alert figure figcaption p {
        font-size: 14px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .alert figure figcaption p {
        font-size: 16px;
    }
}


/*=====  Alert Primary Style =====*/

.alert-primary-light {
    background-color: #EEE6FD;
    color: #542DED;
}

.alert-primary-light.alert-dismissible .btn-close {
    color: rgba(0, 0, 0, 0.8);
}

.alert-primary-light.alert-dismissible .btn-close:hover {
    color: rgba(0, 0, 0, 0.8);
}

.alert-primary-light figure figcaption p {
    color: #000;
}

.alert-primary-variant {
    background-color: #EEE6FD;
    color: #2A21DE;
    font-weight: 500;
}

.alert-primary-variant.alert-dismissible .btn-close {
    color: rgba(0, 0, 0, 0.8);
}

.alert-primary-variant.alert-dismissible .btn-close:hover {
    color: rgba(0, 0, 0, 0.8);
}

.alert-primary-variant figure figcaption p {
    color: #000;
}

.alert-primary-bg {
    background-color: #542DED;
    color: #fff;
}

.alert-primary-bg.alert-dismissible .btn-close {
    color: rgba(255, 255, 255, 0.8);
}

.alert-primary-bg.alert-dismissible .btn-close:hover {
    color: rgba(255, 255, 255, 0.8);
}

.alert-primary-bg figure figcaption p {
    color: #fff;
}

.alert-primary-variant-bg {
    background-color: #2A21DE;
    color: #fff;
    font-weight: 500;
}

.alert-primary-variant-bg.alert-dismissible .btn-close {
    color: rgba(255, 255, 255, 0.8);
}

.alert-primary-variant-bg.alert-dismissible .btn-close:hover {
    color: rgba(255, 255, 255, 0.8);
}

.alert-primary-variant-bg figure figcaption p {
    color: #fff;
}


/*=====  Alert Secondary 1 Style =====*/

.alert-secondary-1-light {
    background-color: #FAE5EC;
    color: #E14C7B;
}

.alert-secondary-1-light.alert-dismissible .btn-close {
    color: rgba(0, 0, 0, 0.8);
}

.alert-secondary-1-light.alert-dismissible .btn-close:hover {
    color: rgba(0, 0, 0, 0.8);
}

.alert-secondary-1-light figure figcaption p {
    color: #000;
}

.alert-secondary-1-variant {
    background-color: #FAE5EC;
    color: #B62F5C;
    font-weight: 500;
}

.alert-secondary-1-variant.alert-dismissible .btn-close {
    color: rgba(0, 0, 0, 0.8);
}

.alert-secondary-1-variant.alert-dismissible .btn-close:hover {
    color: rgba(0, 0, 0, 0.8);
}

.alert-secondary-1-variant figure figcaption p {
    color: #000;
}

.alert-secondary-1-bg {
    background-color: #E14C7B;
    color: #fff;
}

.alert-secondary-1-bg.alert-dismissible .btn-close {
    color: rgba(255, 255, 255, 0.8);
}

.alert-secondary-1-bg.alert-dismissible .btn-close:hover {
    color: rgba(255, 255, 255, 0.8);
}

.alert-secondary-1-bg figure figcaption p {
    color: #fff;
}

.alert-secondary-1-variant-bg {
    background-color: #B62F5C;
    color: #fff;
    font-weight: 500;
}

.alert-secondary-1-variant-bg.alert-dismissible .btn-close {
    color: rgba(255, 255, 255, 0.8);
}

.alert-secondary-1-variant-bg.alert-dismissible .btn-close:hover {
    color: rgba(255, 255, 255, 0.8);
}

.alert-secondary-1-variant-bg figure figcaption p {
    color: #fff;
}


/*=====  Alert Success Style =====*/

.alert-success-light {
    background-color: #F1F8E8;
    color: #7CB637;
}

.alert-success-light.alert-dismissible .btn-close {
    color: rgba(0, 0, 0, 0.8);
}

.alert-success-light.alert-dismissible .btn-close:hover {
    color: rgba(0, 0, 0, 0.8);
}

.alert-success-light figure figcaption p {
    color: #000;
}

.alert-success-variant {
    background-color: #F1F8E8;
    color: #548E24;
    font-weight: 500;
}

.alert-success-variant.alert-dismissible .btn-close {
    color: rgba(0, 0, 0, 0.8);
}

.alert-success-variant.alert-dismissible .btn-close:hover {
    color: rgba(0, 0, 0, 0.8);
}

.alert-success-variant figure figcaption p {
    color: #000;
}

.alert-success-bg {
    background-color: #7CB637;
    color: #fff;
}

.alert-success-bg.alert-dismissible .btn-close {
    color: rgba(255, 255, 255, 0.8);
}

.alert-success-bg.alert-dismissible .btn-close:hover {
    color: rgba(255, 255, 255, 0.8);
}

.alert-success-bg figure figcaption p {
    color: #fff;
}

.alert-success-variant-bg {
    background-color: #548E24;
    color: #fff;
    font-weight: 500;
}

.alert-success-variant-bg.alert-dismissible .btn-close {
    color: rgba(255, 255, 255, 0.8);
}

.alert-success-variant-bg.alert-dismissible .btn-close:hover {
    color: rgba(255, 255, 255, 0.8);
}

.alert-success-variant-bg figure figcaption p {
    color: #fff;
}


/*=====  Alert Info Style =====*/

.alert-info-light {
    background-color: #D8F5FF;
    color: #00C2FE;
}

.alert-info-light.alert-dismissible .btn-close {
    color: rgba(0, 0, 0, 0.8);
}

.alert-info-light.alert-dismissible .btn-close:hover {
    color: rgba(0, 0, 0, 0.8);
}

.alert-info-light figure figcaption p {
    color: #000;
}

.alert-info-variant {
    background-color: #D8F5FF;
    color: #0097EF;
    font-weight: 500;
}

.alert-info-variant.alert-dismissible .btn-close {
    color: rgba(0, 0, 0, 0.8);
}

.alert-info-variant.alert-dismissible .btn-close:hover {
    color: rgba(0, 0, 0, 0.8);
}

.alert-info-variant figure figcaption p {
    color: #000;
}

.alert-info-bg {
    background-color: #00C2FE;
    color: #fff;
}

.alert-info-bg.alert-dismissible .btn-close {
    color: rgba(255, 255, 255, 0.8);
}

.alert-info-bg.alert-dismissible .btn-close:hover {
    color: rgba(255, 255, 255, 0.8);
}

.alert-info-bg figure figcaption p {
    color: #fff;
}

.alert-info-variant-bg {
    background-color: #0097EF;
    color: #fff;
    font-weight: 500;
}

.alert-info-variant-bg.alert-dismissible .btn-close {
    color: rgba(255, 255, 255, 0.8);
}

.alert-info-variant-bg.alert-dismissible .btn-close:hover {
    color: rgba(255, 255, 255, 0.8);
}

.alert-info-variant-bg figure figcaption p {
    color: #fff;
}


/*=====  Alert Caution Style =====*/

.alert-caution-light {
    background-color: #FFFDE6;
    color: #FFBE27;
}

.alert-caution-light.alert-dismissible .btn-close {
    color: rgba(0, 0, 0, 0.8);
}

.alert-caution-light.alert-dismissible .btn-close:hover {
    color: rgba(0, 0, 0, 0.8);
}

.alert-caution-light figure figcaption p {
    color: #000;
}

.alert-caution-variant {
    background-color: #FFFDE6;
    color: #F97C14;
    font-weight: 500;
}

.alert-caution-variant.alert-dismissible .btn-close {
    color: rgba(0, 0, 0, 0.8);
}

.alert-caution-variant.alert-dismissible .btn-close:hover {
    color: rgba(0, 0, 0, 0.8);
}

.alert-caution-variant figure figcaption p {
    color: #000;
}

.alert-caution-bg {
    background-color: #FFBE27;
    color: #fff;
}

.alert-caution-bg.alert-dismissible .btn-close {
    color: rgba(255, 255, 255, 0.8);
}

.alert-caution-bg.alert-dismissible .btn-close:hover {
    color: rgba(255, 255, 255, 0.8);
}

.alert-caution-bg figure figcaption p {
    color: #fff;
}

.alert-caution-variant-bg {
    background-color: #F97C14;
    color: #fff;
    font-weight: 500;
}

.alert-caution-variant-bg.alert-dismissible .btn-close {
    color: rgba(255, 255, 255, 0.8);
}

.alert-caution-variant-bg.alert-dismissible .btn-close:hover {
    color: rgba(255, 255, 255, 0.8);
}

.alert-caution-variant-bg figure figcaption p {
    color: #fff;
}


/*=====  Alert Error Style =====*/

.alert-error-light {
    background-color: #FBE8E7;
    color: #FF4B22;
}

.alert-error-light.alert-dismissible .btn-close {
    color: rgba(0, 0, 0, 0.8);
}

.alert-error-light.alert-dismissible .btn-close:hover {
    color: rgba(0, 0, 0, 0.8);
}

.alert-error-light figure figcaption p {
    color: #000;
}

.alert-error-variant {
    background-color: #FBE8E7;
    color: #CA2D0E;
    font-weight: 500;
}

.alert-error-variant.alert-dismissible .btn-close {
    color: rgba(0, 0, 0, 0.8);
}

.alert-error-variant.alert-dismissible .btn-close:hover {
    color: rgba(0, 0, 0, 0.8);
}

.alert-error-variant figure figcaption p {
    color: #000;
}

.alert-error-bg {
    background-color: #FF4B22;
    color: #fff;
}

.alert-error-bg.alert-dismissible .btn-close {
    color: rgba(255, 255, 255, 0.8);
}

.alert-error-bg.alert-dismissible .btn-close:hover {
    color: rgba(255, 255, 255, 0.8);
}

.alert-error-bg figure figcaption p {
    color: #fff;
}

.alert-error-variant-bg {
    background-color: #CA2D0E;
    color: #fff;
    font-weight: 500;
}

.alert-error-variant-bg.alert-dismissible .btn-close {
    color: rgba(255, 255, 255, 0.8);
}

.alert-error-variant-bg.alert-dismissible .btn-close:hover {
    color: rgba(255, 255, 255, 0.8);
}

.alert-error-variant-bg figure figcaption p {
    color: #fff;
}


/*=====   Alert & Message Page Style =====*/

.single-alert {
    padding-top: 35px;
}

.alert-list {
    padding-top: 15px;
}

.alert-list li+li {
    margin-top: 15px;
}

.owl-carousel .owl-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}

@media screen and (max-width: 1200px) {
    .link-img {
        width: auto;
        height: auto;
    }
}

@media screen and (min-width: 1200px) {

    .title-line::before,
    .title-line::after {
        content: " ------------------------------------------ ";
    }
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: #f2f2f2;
}

#myTab a.nav-link:hover {
    background-color: #f2f2f2;
}

#products {
    background-color: #f2f2f2;
}

img.imgtab {
    width: auto;
}

.lead {
    font-size: 14px;
    padding-top: 10px;
    font-weight: bold;
}

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

@media screen and (max-width:1200px) {
    .card-img {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }
}

.top-title-mobile {
    background-image: url('../images/shop_top.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #0097EF;
    background-blend-mode: overlay;
    height: 150px;
}

.top-title {
    background-image: url('../images/shop_top.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    font-size: 30px;
    background-color: rgb(32, 190, 247, 0.8);
    background-blend-mode: overlay;
    height: 200px;
}

.top-title h2 span {
    /* background-color: #81B3E0; */
    font-size: 40px;
    color: #fff;
    font-family: 'Dela Gothic One', cursive;
    text-shadow: 2px 2px 8px rgba(150, 150, 150, 1);
}

.newplat-top-title {
    background-image: url('../images/newplatform_top.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #81B3E0;
    background-blend-mode: overlay;
    font-size: 30px;
    box-shadow: inset 0px 0px 400px 110px rgba(0, 0, 0, .5);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newplat-top-title span {
    /* background-color: #81B3E0; */
    font-size: 40px;
    color: #fff;
    font-family: 'Dela Gothic One', cursive;
    text-shadow: 2px 2px 8px rgba(150, 150, 150, 1);
}

.newrap-top-title {
    background-image: url('../images/newrapform_top.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #81B3E0;
    background-blend-mode: overlay;
    font-size: 30px;
    box-shadow: inset 0px 0px 400px 110px rgba(0, 0, 0, .5);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newrap-top-title span {
    /* background-color: #81B3E0; */
    font-size: 40px;
    color: #fff;
    font-family: 'Dela Gothic One', cursive;
    text-shadow: 2px 2px 8px rgba(150, 150, 150, 1);
}

.nordung-top-title {
    background-image: url('../images/nordung_top.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #81B3E0;
    background-blend-mode: multiply;
    font-size: 30px;
    box-shadow: inset 0px 0px 400px 110px rgba(0, 0, 0, .4);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nordung-top-title span {
    /* background-color: #81B3E0; */
    font-size: 40px;
    color: #fff;
    font-family: 'Dela Gothic One', cursive;
    text-shadow: 2px 2px 8px rgba(150, 150, 150, 1);
}

.dance-top-title {
    background-image: url('../images/danceplatform_top.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #81B3E0;
    background-blend-mode: multiply;
    font-size: 30px;
    box-shadow: inset 0px 0px 400px 110px rgba(0, 0, 0, .4);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dance-top-title span {
    /* background-color: #81B3E0; */
    font-size: 40px;
    color: #fff;
    font-family: 'Dela Gothic One', cursive;
    text-shadow: 2px 2px 8px rgba(150, 150, 150, 1);
}


.sevan-top-title {
    background-image: url('../images/sevanmater-top.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #81B3E0;
    background-blend-mode: difference;
    font-size: 30px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sevan-top-title span {
    /* background-color: #81B3E0; */
    font-size: 40px;
    color: #fff;
    font-family: 'Dela Gothic One', cursive;
    text-shadow: 2px 2px 8px rgba(150, 150, 150, 1);
}

span.catalogo {
    font-size: 40px;
    font-family: Arial, Helvetica, sans-serif;
    color: yellow;
}


@media screen and (max-width:570px) {
    .top-title h2 span {
        /* background-color: #81B3E0; */
        font-size: 22px;
        color: #fff;
        font-family: 'Dela Gothic One', cursive;
        text-shadow: 2px 2px 8px rgba(150, 150, 150, 1);
    }

    .newplat-top-title span {
        /* background-color: #81B3E0; */
        font-size: 22px;
        color: #fff;
        font-family: 'Dela Gothic One', cursive;
        text-shadow: 2px 2px 8px rgba(150, 150, 150, 1);
        display: table;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .newrap-top-title span {
        /* background-color: #81B3E0; */
        font-size: 22px;
        color: #fff;
        font-family: 'Dela Gothic One', cursive;
        text-shadow: 2px 2px 8px rgba(150, 150, 150, 1);
    }

    .nordung-top-title span {
        /* background-color: #81B3E0; */
        font-size: 22px;
        color: #fff;
        font-family: 'Dela Gothic One', cursive;
        text-shadow: 2px 2px 8px rgba(150, 150, 150, 1);
    }

    .sevan-top-title span {
        /* background-color: #81B3E0; */
        font-size: 22x;
        color: #fff;
        font-family: 'Dela Gothic One', cursive;
        text-shadow: 2px 2px 8px rgba(150, 150, 150, 1);
    }

    span.catalogo {
        font-size: 22px;
        font-family: Arial, Helvetica, sans-serif;
        color: yellow;
    }

    h1.det-autore {
        font-size: 24px;
    }

    h3.det-titolo {
        font-size: 16px;
    }

    #main_image {
        width: 100%;
        height: auto;
    }

}

@media screen and (min-width:571px) {
    #main_image {
        width: auto;
        min-height: 500px;
        object-fit: cover;
    }

}



span.catalogo::after {
    content: "\A";
}

.btn-cart {
    background-color: #198754;
    color: #fff;
}

.btn-cart:hover {
    background-color: #d1210a;
    color: #fff;
}

.btn-purple {
    background-color: #81B3E0;
    color: #fff;
}

.btn-purple:hover {
    background-color: #B62F5C;
    color: #fff;
}

.footer-info {
    background-color: #81B3E0;
}

.footer-link,
.footer-link a {
    color: #d2e7f9;
    font-weight: 100;
}

.link li a {
    color: #333
}

.link li a:hover {
    color: #fff
}

.navbar-nav li.nav-item a.nav-link {
    color: #81B3E0;
}

.navbar-nav li.nav-item a.nav-link:hover {
    color: #fff;
    background-color: #81B3E0;
}

button.bootbox-close-button.close {
    background-color: #81B3E0;
    padding: 5px 10px;
    border: 0px;
    color: #fff;
}


/*=====  Navbar Style 7 =====*/

.menu-style-7 {
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.08);
    background-color: #fff;
}

.menu-style-7 .desktop-logo {
    margin-right: 10px;
}

.menu-style-7 .navbar-close {
    position: absolute;
    top: 5px;
    right: 15px;
}

.menu-style-7 .navbar-close a {
    font-size: 24px;
    color: #000;
    transition: all 0.3s linear;
}

.menu-style-7 .navbar-close a:hover {
    color: #542DED;
}

.menu-style-7 .navbar-top-wrapper {
    background-color: #81B3E0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .menu-style-7 .navbar-top-wrapper {
        background-color: #81B3E0;
    }
}

@media (max-width: 767px) {
    .menu-style-7 .navbar-top-wrapper {
        background-color: #81B3E0;
    }
}

.menu-style-7 .navbar-top {
    padding: 3px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .menu-style-7 .navbar-top {
        padding-top: 10px;
    }
}

.menu-style-7 .navbar-top .navbar-top-left .navbar-top-link {
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .menu-style-7 .navbar-top .navbar-top-left .navbar-top-link {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .menu-style-7 .navbar-top .navbar-top-left .navbar-top-link {
        text-align: center;
    }
}

.menu-style-7 .navbar-top .navbar-top-left .navbar-top-link li a {
    padding: 0 16px;
    line-height: 36px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s linear;
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .menu-style-7 .navbar-top .navbar-top-left .navbar-top-link li a {
        padding: 0 12px;
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .menu-style-7 .navbar-top .navbar-top-left .navbar-top-link li a {
        font-size: 14px;
        padding: 5px;
        line-height: 22px;
        color: #000;
    }
}

.menu-style-7 .navbar-top .navbar-top-left .navbar-top-link li a i {
    margin-right: 4px;
    font-size: 18px;
}

.menu-style-7 .navbar-top .navbar-top-left .navbar-top-link li a:hover {
    color: #000;
}

.menu-style-7 .navbar-top .navbar-top-right .navbar-top-link {
    display: flex;
    align-items: center;
}

.menu-style-7 .navbar-top .navbar-top-right .navbar-top-link li a {
    padding: 0 16px;
    line-height: 36px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s linear;
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .menu-style-7 .navbar-top .navbar-top-right .navbar-top-link li a {
        padding: 0 12px;
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .menu-style-7 .navbar-top .navbar-top-right .navbar-top-link li a {
        font-size: 14px;
        padding: 5px;
        line-height: 22px;
        color: #000;
    }
}

.menu-style-7 .navbar-top .navbar-top-right .navbar-top-link li a i {
    margin-right: 4px;
    font-size: 18px;
}

.menu-style-7 .navbar-top .navbar-top-right .navbar-top-link li a:hover {
    color: #001AD8;
}

.menu-style-7 .navbar-top .navbar-top-right .navbar-top-link li select {
    color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .menu-style-7 .navbar-top .navbar-top-right .navbar-top-link li select {
        display: block;
        color: #000;
    }
}

@media (max-width: 767px) {
    .menu-style-7 .navbar-top .navbar-top-right .navbar-top-link li select {
        display: none;
    }
}

.menu-style-7 .navbar-top .navbar-top-right .navbar-top-link li select option {
    color: #000;
}

.menu-style-7 .main-navbar {
    padding: 10px 0;
}

.menu-style-7 .main-navbar .menu-toggle {
    padding: 5px;
    border: 0;
    background: none;
    transition: all 0.3s linear;
    border-radius: 4px;
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .menu-style-7 .main-navbar .menu-toggle {
        position: absolute;
        top: 65px;
        right: 12px;
        display: block;
    }
}

.menu-style-7 .main-navbar .menu-toggle .toggle-icon {
    width: 25px;
    height: 2px;
    background-color: #000;
    display: block;
    margin: 5px 0;
    position: relative;
    transition: all 0.3s linear;
}

.menu-style-7 .main-navbar .menu-toggle.active {
    background-color: #542DED;
}

.menu-style-7 .main-navbar .menu-toggle.active .toggle-icon {
    background-color: #fff;
}

.menu-style-7 .main-navbar .menu-toggle.active .toggle-icon:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}

.menu-style-7 .main-navbar .menu-toggle.active .toggle-icon:nth-child(2) {
    opacity: 0;
}

.menu-style-7 .main-navbar .menu-toggle.active .toggle-icon:nth-child(3) {
    top: -7px;
    transform: rotate(135deg);
}

.menu-style-7 .main-navbar .navbar-menu .main-menu {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.menu-style-7 .main-navbar .navbar-menu .main-menu.open {
    transform: translateX(0);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu {
        position: fixed;
        left: 0;
        top: 0;
        max-width: 350px;
        width: 100%;
        height: 100vh;
        background: #fff;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        display: block;
        padding: 40px 20px;
        overflow-y: scroll;
        transition: all 0.3s linear;
        transform: translateX(-100%);
        z-index: 999;
    }
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li {
    padding: 17px 0;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li {
        padding: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li.position-static {
        position: relative !important;
    }
}

@media (max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li.position-static {
        position: relative !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li.menu-item-has-children a.collapsed i {
        transform: rotate(90deg);
    }
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li.menu-item-has-children a i {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li.menu-item-has-children a i {
        font-size: 24px;
        display: inline;
        transition: all 0.3s linear;
        transform: rotate(270deg);
    }
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li a {
    padding: 0 16px;
    line-height: 36px;
    color: #000;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s linear;
    border-radius: 4px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li a {
        padding: 0 12px;
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li a {
        display: flex;
        justify-content: space-between;
        padding: 0;
        border-bottom: 1px solid #D1D1D1;
        line-height: 36px;
        text-transform: capitalize;
        font-size: 16px;
        font-weight: 400;
        border-radius: 0;
    }
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li .menu-expand {
    position: absolute;
    width: 21px;
    height: 21px;
    top: 8px;
    right: 0;
    cursor: pointer;
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li .menu-expand::before {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li .menu-expand::after {
    position: absolute;
    content: '';
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #000;
    transition: all 0.3s linear;
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li.active>.menu-expand::after {
    height: 0;
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li:hover>a {
    background-color: #81B3E0;
    color: #fff;
    /* box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32); */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li:hover>a {
        background-color: #fff;
        color: #4C4C4C;
        box-shadow: none;
    }
}

@media (max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li:hover>a {
        background-color: #fff;
        color: #4C4C4C;
        box-shadow: none;
    }
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-menu {
    position: absolute;
    top: 125%;
    left: 0;
    z-index: 99;
    min-width: inherit;
    width: 256px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32);
    border: 0;
    border-radius: 4px;
    padding: 0;
    margin-top: 0;
    background-color: #fff;
    transition: all 0.3s linear;
    opacity: 0;
    visibility: hidden;
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-menu.collapse:not(.show) {
    display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-menu.collapse:not(.show) {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-menu {
        width: 226px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-menu {
        position: relative;
        top: 0;
        width: 100%;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0;
        padding-left: 15px;
    }
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-menu li {
    position: relative;
    padding: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-menu li.menu-item-has-children a.collapsed i {
        transform: rotate(90deg);
    }
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-menu li.menu-item-has-children a i {
    display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-menu li.menu-item-has-children a i {
        font-size: 24px;
        display: inline;
        transition: all 0.3s linear;
        transform: rotate(270deg);
    }
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-menu li>a {
    padding: 0 16px;
    line-height: 46px;
    font-weight: 500;
    font-size: 16px;
    border-radius: 0;
    display: block;
    transition: all 0.4s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-menu li>a {
        font-size: 14px;
        line-height: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-menu li>a {
        display: flex;
        justify-content: space-between;
        font-size: 14px;
        padding: 0;
        border-radius: 0;
        font-weight: 400;
    }
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-menu li>a i {
    float: right;
    font-size: 24px;
    line-height: 42px;
    transition: all 0.4s linear;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-menu li>a i {
        display: none;
    }
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-menu li:first-child>a {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-menu li:last-child>a {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-menu li .sub-menu {
    position: absolute;
    top: 25%;
    left: 100%;
    width: 256px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32);
    border: 0;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s linear;
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-menu li .sub-menu.collapse:not(.show) {
    display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-menu li .sub-menu.collapse:not(.show) {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-menu li .sub-menu {
        width: 226px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-menu li .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding-left: 15px;
    }
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-menu li:hover>.sub-menu {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li:last-child .sub-menu li .sub-menu li .sub-menu {
    left: auto;
    right: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li:last-child .sub-menu li .sub-menu li .sub-menu {
        left: 0;
        right: auto;
    }
}

@media (max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li:last-child .sub-menu li .sub-menu li .sub-menu {
        left: 0;
        right: auto;
    }
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li:hover .sub-menu {
        top: 0;
    }
}

@media (max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li:hover .sub-menu {
        top: 0;
    }
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown {
    position: absolute;
    top: 125%;
    left: 0;
    z-index: 999;
    min-width: inherit;
    width: 100%;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.32);
    border: 0;
    border-radius: 4px;
    padding: 0;
    margin-top: 0;
    background-color: #fff;
    transition: all 0.3s linear;
    padding: 40px 0 40px;
    opacity: 0;
    visibility: hidden;
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown.collapse:not(.show) {
    display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown.collapse:not(.show) {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown {
        position: relative;
        top: 0;
        width: 100%;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0;
        padding-left: 15px;
    }
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown .mega-dropdown {
    padding: 0 !important;
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown .mega-dropdown .mega-dropdown-list {
    width: 25%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown .mega-dropdown .mega-dropdown-list {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown .mega-dropdown .mega-dropdown-list {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown .mega-dropdown .mega-dropdown-list.menu-item-has-children h6.collapsed i {
        transform: rotate(90deg);
    }
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown .mega-dropdown .mega-dropdown-list.menu-item-has-children h6 i {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown .mega-dropdown .mega-dropdown-list.menu-item-has-children h6 i {
        font-size: 24px;
        display: inline;
        transition: all 0.3s linear;
        transform: rotate(270deg);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown .mega-dropdown .mega-dropdown-list .mega-title {
        line-height: 36px;
        border-bottom: 1px solid #D1D1D1;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
    }
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown .mega-dropdown .mega-dropdown-list ul.collapse:not(.show) {
    display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown .mega-dropdown .mega-dropdown-list ul.collapse:not(.show) {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown .mega-dropdown .mega-dropdown-list ul {
        padding-left: 15px;
    }
}

@media (max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown .mega-dropdown .mega-dropdown-list ul {
        padding-left: 15px;
    }
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown .mega-dropdown .mega-dropdown-list ul li {
    padding: 0;
    margin-top: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown .mega-dropdown .mega-dropdown-list ul li {
        margin-top: 8px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown .mega-dropdown .mega-dropdown-list ul li {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown .mega-dropdown .mega-dropdown-list ul li {
        margin-top: 0;
    }
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown .mega-dropdown .mega-dropdown-list ul li a {
    font-size: 16px;
    line-height: 22px;
    padding: 0;
    text-transform: capitalize;
    font-weight: 400;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown .mega-dropdown .mega-dropdown-list ul li a {
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown .mega-dropdown .mega-dropdown-list ul li a {
        padding: 0;
        line-height: 36px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown .mega-dropdown .mega-dropdown-list ul li a {
        padding: 0;
        line-height: 36px;
        font-size: 14px;
    }
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li .sub-mega-dropdown .mega-dropdown .mega-dropdown-list ul li:hover>a {
    background-color: transparent;
    color: #542DED;
    box-shadow: none;
    padding-left: 5px;
}

.menu-style-7 .main-navbar .navbar-menu .main-menu li:hover .sub-mega-dropdown {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li:hover .sub-mega-dropdown {
        top: 0;
    }
}

@media (max-width: 767px) {
    .menu-style-7 .main-navbar .navbar-menu .main-menu li:hover .sub-mega-dropdown {
        top: 0;
    }
}

.menu-style-7 .navbar-cart {
    padding-left: 15px;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .menu-style-7 .navbar-cart {
        float: right;
        display: block;
    }
}

@media (max-width: 767px) {
    .menu-style-7 .navbar-cart {
        float: right;
        display: block;
    }
}

.menu-style-7 .navbar-cart .icon-btn {
    border-radius: 4px;
}

.menu-style-7 .navbar-cart .icon-btn::before {
    display: none;
}

.menu-style-7 .navbar-cart .navbar-cart-dropdown {
    width: 350px;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 99;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s linear;
    border-radius: 8px;
    margin-top: 15px;
}

@media (max-width: 767px) {
    .menu-style-7 .navbar-cart .navbar-cart-dropdown {
        width: 280px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .menu-style-7 .navbar-cart .navbar-cart-dropdown {
        width: 350px;
    }
}

.menu-style-7 .navbar-cart:hover .navbar-cart-dropdown {
    opacity: 1;
    visibility: visible;
}

.menu-style-7 .navbar-toggle {
    padding-left: 0;
}

.menu-style-7 .navbar-toggle .icon-btn {
    border-radius: 4px;
}

.menu-style-7 .navbar-toggle .icon-btn::before {
    display: none;
}

.overlay-7 {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99;
    transition: all 0.3s linear;
    transition-delay: 0.3s;
}

.overlay-7.open {
    width: 100%;
    transition-delay: 0s;
}

.icon-text-wrapper .icon-text-list {
    padding-top: 15px;
}

.icon-text-wrapper .icon-text-list li {
    display: inline-block;
}

.icon-text-wrapper .icon-text-list li+li {
    margin-left: 15px;
    margin-top: 15px;
}

.icon-text {
    height: 20px;
    line-height: 20px;
    padding: 0 8px;
    border-radius: 18px;
    font-weight: 500;
    font-size: 12px;
}

.icon-text.text-style-1 {
    background-color: #E14C7B;
    color: #fff;
}

.icon-text-btn {
    position: relative;
    overflow: visible;
}

.icon-text-btn .main-btn {
    text-transform: capitalize;
}

.icon-text-btn .icon-text {
    position: absolute;
    top: -7px;
    right: -8px;
    z-index: 5;
}

.sidebar li .submenu {
    list-style: none;
    padding: 10px;
}

.sidebar .nav-link {
    font-weight: 500;
    color: #333;
}

.sidebar .nav-link:hover {
    color: #001AD8;
}

.caret-right {
    float: right;
}


/**
* Backtotop
*/

#back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: none;
    color: #fFF;
    padding-top: 10px;
    text-align: center;
    vertical-align: middle;
    background-color: #000;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#back-to-top>i {
    color: #fff;
}