p {
    color: #000;
    font-size: 1.1rem;
    line-height: 1.5;
}

iframe.video,
video {
    display: flex;
    height: auto;
    -o-object-fit: fill;
    object-fit: fill;
    width: 100%;
}

iframe.video {
    min-height: 195px;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-flex-end {
    justify-content: flex-end !important;
}

.floated.left {
    float: left !important;
}

.floated.right {
    float: right !important;
}

.aligned.right {
    text-align: right !important;
}

.ui.form .field>.floating.selection.dropdown {
    border-radius: 100px !important;
}

.ui.form .field>.floating.selection.dropdown .menu {
    border-radius: 1rem !important;
}

.ui.form .field>.floating.selection.dropdown>.label {
    border-radius: 100px;
}

.table-wrapper {
    border-radius: 1rem;
    font-size: 1.1rem;
    overflow-x: auto;
    overflow-y: visible;
    width: 100%;
}

.ui.star.rating .active.icon {
    color: #ffbc00 !important;
    text-shadow: none !important;
}

.image.rating {
    align-items: start;
    display: flex;
    justify-content: start;
}

.image.rating svg {
    flex: 1;
    margin: 0 0.2rem;
    max-width: 18px;
    width: 100%;
}

@keyframes waving {
    0% {
        transform: translate(-50%, -75%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -75%) rotate(1turn);
    }
}

.waving.btn {
    border: none;
    border-radius: 100px;
    box-sizing: border-box;
    cursor: pointer;
    margin-top: 0.5rem;
    overflow: hidden;
    padding: 1.25rem 1rem;
    position: relative;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.waving.btn:hover .liquid {
    top: -200px;
}

.waving.btn span.text {
    color: #fff;
    font-family: Valexa;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.waving.btn span.liquid {
    background: #ff7878;
    display: block;
    height: 300px;
    left: 0;
    position: absolute;
    top: -145px;
    transition: 0.5s;
    width: 100%;
}

.waving.btn span.liquid:after {
    animation: waving 10s linear infinite;
    background: #000;
    background: hsla(0, 0%, 100%, 0.5);
    border-radius: 40%;
}

.waving.btn span.liquid:after,
.waving.btn span.liquid:before {
    content: "";
    height: 200%;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translate(-50%, -75%);
    width: 200%;
}

.waving.btn span.liquid:before {
    animation: waving 5s linear infinite;
    background: #000;
    background: #fff;
    border-radius: 45%;
}

.ui.button.yellow {
    background: #ffe73e !important;
    color: #000 !important;
}

.ui.button.yellow:hover {
    background: #ffba20 !important;
    color: #000 !important;
}

.ui.button.white,
.ui.button.white:hover {
    background: #fff !important;
    color: #000 !important;
}

@keyframes cursor-colors {
    0% {
        filter: hue-rotate(0deg);
    }

    to {
        filter: hue-rotate(1turn);
    }
}

#cursor {
    animation: cursor-colors 5s infinite;
    background: rgba(63, 133, 255, 0.68);
    border-radius: 50%;
    box-shadow: 0 0 20px 10px rgba(63, 133, 255, 0.68);
    display: none;
    height: 1rem;
    opacity: 0.8;
    pointer-events: none;
    position: fixed;
    transform: translate(-50%, -50%);
    width: 1rem;
    z-index: 999;
}

#cursor:before {
    border-radius: 50%;
    content: "";
    height: 50px;
    opacity: 0.2;
    position: absolute;
    transform: translate(-30%, -30%);
    width: 50px;
}

.circular-corner {
    border-radius: 500px !important;
}

#top-menu .dropdown.cart .items .item .subcontent input,
.rounded-corner,
.selection-title .menu a {
    border-radius: 1rem !important;
}

.ui.message.white {
    background: #fff;
}

.ui.pagination.menu {
    border-radius: 500px;
}

.ui.pagination.menu .item {
    font-size: 1.1rem;
}

h2 {
    font-size: 1.5rem;
}

a {
    color: #000000 !important;
    cursor: pointer;
    opacity: 1 !important;
}
.getstart {
    color: #ffffff !important;
    cursor: pointer;
    opacity: 1 !important;
}
.bold,
strong {
    font-weight: 600;
}

.overflow-hidden {
    overflow: hidden;
}

input.error {
    background: #fff6f6 !important;
    border-color: #e0b4b4 !important;
    color: #9f3a38 !important;
}

body,
html {
    background: #f9f9f9;
    height: auto !important;
    margin: 0 auto;
    /* max-width: 1600px; */
}

.main.container {
    background: #fff;
    margin: 0 auto !important;
    width: 100% !important;
}

#user-message {
    align-items: center;
    -webkit-backdrop-filter: invert(1);
    backdrop-filter: invert(1);
    background: radial-gradient(#f6f6f6, hsla(0, 0%, 96%, 0.77), #fff);
    display: none;
    height: 100vh;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 999999;
}

#user-message.active {
    display: flex;
}

#user-message .container {
    background: #fff;
    border-radius: 1rem;
    max-width: 400px;
    position: relative;
    width: 100%;
    z-index: 99999;
}

#user-message .content>div {
    padding: 1.5rem;
}

#user-message .content .icon {
    display: flex;
    padding-bottom: 0;
}

#user-message .content .icon img {
    margin: auto;
    width: 60px;
}

#user-message .content .text {
    color: #000;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    padding-top: 1rem;
    text-align: center;
}

#user-message .action {
    background: #ececec;
    border-radius: 0 0 1rem 1rem;
    padding: 1.5rem;
    text-align: center;
}

#user-message .action button {
    border-radius: 100px;
    margin: auto;
    min-width: 180px;
}

#cookie {
    background: #fff;
    border-radius: 1rem;
    bottom: 1rem;
    box-shadow: 0 0 40px 40px rgba(0, 0, 0, 0.07);
    display: none;
    left: 1rem;
    max-width: 300px;
    position: fixed;
    width: 100%;
    z-index: 99999;
}

#cookie.active {
    display: block;
}

#cookie .content>div {
    padding: 1.5rem;
}

#cookie .content .icon {
    align-items: center;
    background: #fff;
    border-radius: 1rem 1rem 0 0;
    display: flex;
    justify-content: center;
    padding: 1rem;
}

#cookie .content .icon img {
    margin-right: 2rem;
    width: 60px;
}

#cookie .content .icon span {
    font-family: system-ui;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
}

#cookie .content .text {
    background: #f2f3ff;
    color: #353535;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    padding-top: 1rem;
}

#cookie .content .text * {
    color: #353535;
}

#cookie .action {
    background: #fff;
    border-radius: 0 0 1rem 1rem;
    padding: 1.5rem;
}

#cookie .action button {
    border-radius: 0.75rem;
    min-width: 180px;
}

#maintenance-page {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

#maintenance-page .row {
    flex-direction: column;
}

#maintenance-page .timeout-wrapper {
    align-items: center;
    display: flex;
    font-size: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

#maintenance-page .timeout-wrapper .item {
    align-items: center;
    border-radius: 1rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 90px;
    justify-content: center;
    line-height: 1;
    margin: 0.5rem;
    padding: 0.25rem;
    width: 90px;
}

#maintenance-page .timeout-wrapper .item .text {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1rem;
}

#maintenance-page .timeout-wrapper .item .count {
    font-size: 2rem;
}

#maintenance-page .ui.header {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    margin: auto;
    text-transform: uppercase;
}

#maintenance-page .ui.header.sub {
    color: #cadcea;
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 2rem;
    text-transform: capitalize;
}

#maintenance-page .logo {
    margin-bottom: 2rem;
}

#maintenance-page .logo img {
    height: auto;
    max-width: 300px;
    width: 100%;
}

#maintenance-page .more {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 5rem auto 0;
    padding: 2rem;
    text-align: center;
    width: 100%;
}

#maintenance-page .more .content {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 800px;
}

.center.aligned {
    text-align: center;
}

.left.aligned {
    text-align: left;
}

.right.aligned {
    text-align: right;
}

.buttons.spaced {
    display: flex;
}

.buttons.spaced .button {
    flex: 1;
}

.buttons.spaced .button.basic {
    border: 1px solid #ddd;
    border-radius: 0.25rem;
}

.buttons.spaced .button:not(:last-child) {
    margin-right: 0.5rem;
}

.display-flex {
    display: -ms-flex;
    display: flex;
}

.custom.divider {
    border-bottom: 5px solid #2185d0 !important;
    margin: 1rem -1rem;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-table {
    display: table !important;
}

.d-flex,
.dropdown-wrapper {
    display: flex !important;
}

.d-inline-block {
    display: inline-block;
}

[v-cloak] {
    display: none;
}

[vhidden] {
    visibility: hidden;
}

.d-flex,
.dropdown-wrapper {
    display: flex;
}

#blog .post .column.left .related-posts .card .content,
#blog .posts .column .card .content,
#top-menu .ui.dropdown .left.menu,
.borderless,
.home-items .content,
.selection-title .menu {
    border: none !important;
}

.selection-title .menu,
.shadowless,
.ui.celled.grid>.column:not(.row),
.ui.celled.grid>.row,
.ui.celled.grid>.row>.column {
    box-shadow: none !important;
}

#top-menu .dropdown.cart .items .item,
#top-menu .user>.left.menu a.item,
#top-menu .user>.left.menu>div.item,
.radiusless,
.selection-title .menu {
    border-radius: 0 !important;
}

.w-20 {
    width: 20% !important;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.capitalize {
    text-transform: capitalize !important;
}

img {
    max-width: 100%;
}

.divider.fluid {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
}

.ui.card> :last-child,
.ui.cards>.card> :last-child {
    border-radius: 0;
}

.ui.secondary.menu .active.item {
    background: transparent;
    font-weight: 600;
}

span.tag {
    color: #fff;
    display: block;
}

span.tag.red {
    background: #ff3e4d !important;
    color: #fff !important;
}

span.tag.yellow {
    background: linear-gradient(90deg, #ffd366, #ffc73e, #ffb500) !important;
    background: #ffc12a;
    color: #000;
}

span.tag.blue {
    background: #00a5ef !important;
    color: #fff !important;
}

span.tag.teal {
    background: #009688 !important;
    color: #fff !important;
}

span.tag.green {
    background: #00ad50 !important;
    color: #fff !important;
}

.button.silver {
    background: silver;
    color: #fff;
}

.button.silver:active,
.button.silver:focus,
.button.silver:hover {
    color: #fff;
    font-weight: 700;
}

.button.tumblr {
    background: #44546a;
    color: #fff;
}

.button.tumblr:hover {
    background: #394659;
    color: #fff;
}

.button.white {
    background: #fff !important;
    color: #000 !important;
    font-weight: 400 !important;
}

.button.white.basic {
    border: 1px solid silver !important;
}

.button.white:hover {
    font-weight: 700 !important;
}

.player {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
}

.player .play,
.player .stop {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 30px;
    justify-content: center;
    min-height: 30px;
    min-width: 30px;
    width: 30px;
}

.player .play img,
.player .stop img {
    border-radius: 100px;
    filter: invert(1);
    width: 100%;
}

.player .play {
    margin-right: 0.5rem;
}

.player .play.playing img {
    filter: invert(1) drop-shadow(3px 3px 10px #232323);
}

.player .stop {
    margin-left: 0.5rem;
}

.player .wave {
    background-color: #fff;
    height: 40px;
    -webkit-mask-image: url(/assets/images/waves.svg);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    position: relative;
    width: 100%;
}

.player .wave span {
    background: #ff9e22;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 0;
}

.player[data-type="audio"],
.player[data-type="audio"] .controls {
    align-items: center;
    display: flex;
    justify-content: center;
}

.player[data-type="audio"] .controls {
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.15);
    border-radius: 100px;
    height: 55px;
    padding: 0.5rem 1rem;
    width: calc(100% - 2rem);
}

.player[data-type="audio"] .play.playing img {
    box-shadow: 0 0 0 2px #000;
    filter: invert(1);
}

.player[data-type="video"] .controls {
    align-items: center;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background: rgba(35, 35, 35, 0.09);
    bottom: 0;
    display: flex;
    height: 55px;
    justify-content: center;
    left: 0;
    padding: 0.5rem 1rem;
    position: absolute;
    width: 100%;
    z-index: 2;
}

.video-player .ui.dimmer {
    height: calc(100% - 55px) !important;
}

.video-player .player {
    background: #252525 !important;
    padding-bottom: 55px;
    position: relative;
}

.video-player .player .controls {
    background: #232323;
}

.video-player .content {
    background: transparent !important;
    padding: 0 !important;
}

#body {
    background: #fff;
    margin: auto;
    max-width: 100%;
}

#body .ui.processing-transaction.dimmer {
    height: 100%;
    position: fixed;
    width: 100%;
}

#body .card.product {
    border-radius: 15.27px;
    /* box-shadow: 0 0 20px 10px #f0f8ff; */
    overflow: hidden;
    background-color: #F6F6F6;
}

#body .card.product .content {
    border: none;
    padding: 0;
}

#body .card.product .content:last-child {
    /*    padding-bottom: 2.5rem !important;*/
}

#body .card.product .header {
    /* display: flex; */
    overflow: hidden;
    position: relative;
    /* border-radius: 15.27px; */
}

#body .card.product .header .badge {
    align-items: center;
    -webkit-backdrop-filter: blur(10px);
    /* backdrop-filter: blur(10px); */
    background: #FF2F2F;
    border-radius: 6px !important;
    display: flex;
    height: 32px;
    justify-content: center;
    left: 0;
    padding: 0.3rem 0.8rem 0.3rem 0.8rem !important;
    position: absolute;
    top: 0.75rem;
    width: 60px;
    z-index: 2;
    font-size: 20.36px;
    height: 28px;
    font-weight: 500 !important;
}

#body .card.product .header .badge img {
    height: 20px;
    width: 20px;
}

#body .card.product .header .cover-mask {
    background: #fff;
    bottom: -6px;
    content: "";
    display: none;
    height: 50px;
    left: 0;
    -webkit-mask-position: center bottom;
    -webkit-mask-size: cover;
    position: absolute;
    width: 100.1%;
}

#body .card.product .header .video,
#body .card.product .header a.link {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

#body .card.product .header .video {
    align-items: center;
    cursor: pointer;
    display: none;
    justify-content: center;
}

#body .card.product .header .video img {
    filter: invert(1);
    width: 80px;
}

#body .card.product .header:hover .item-action {
    width: 100%;
}

#body .card.product .header:hover .item-action span {
    visibility: visible;
}

#body .card.product .header:hover .video {
    display: flex;
}

#body .card.product .header .item-action {
    align-items: flex-end;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    padding-bottom: 15%;
    position: absolute;
    top: 0;
    transition: width 0.5s;
    width: 0;
    text-decoration: none !important;
}

#body .card.product .header .item-action span {
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    background: hsla(0, 0%, 100%, 0.42);
    border-radius: 5.09px;
    color: #000;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    position: relative;
    transition: background 0.5s, -webkit-backdrop-filter 0.5s;
    transition: backdrop-filter 0.5s, background 0.5s;
    transition: backdrop-filter 0.5s, background 0.5s,
        -webkit-backdrop-filter 0.5s;
    visibility: hidden;
    white-space: nowrap;
    z-index: 2;
}

#body .card.product .header .item-action span:hover {
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
    background: #fff;
}

#body .card.product .price {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: rgba(84, 84, 84, 0.42);
    border: 1px solid hsla(0, 0%, 100%, 0.212);
    border-radius: 5.09px;
    color: #000;
    font-size: 0.9rem;
    font-weight: 600;
    /* padding: 0.5rem 0.5rem 0.25rem; */
    padding: 0.3rem 0.8rem 0.3rem 0.8rem;
    position: absolute;
    right: 0.75rem;
    top: 0.75rem;
    background-color: #FFFFFF;
}

#body .card.product .dollorprice {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: #FFFFFF;
    border: 1px solid hsla(0, 0%, 100%, 0.212);
    border-radius: 5.09px;
    color: #000;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem 0.3rem 0.8rem;
    position: absolute;
    right: 80px;
    top: 0.75rem;
    width: 70px;
  
    text-align: center;
}
#body .card.product .indianprice {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: #FFFFFF;
    border: 1px solid hsla(0, 0%, 100%, 0.212);
    border-radius: 5.09px;
    color: #000;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem 0.3rem 0.8rem;
    position: absolute;
    right: 0.65rem;
    top: 0.75rem;
    width: 70px;
    text-align: center;
    
}
#body .card.product .discount {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: #ff2f2f;
    border: 1px solid hsla(0,0%,100%,.212);
    border-radius: 5.09px;
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    padding: 0.3rem 0.5rem;
    position: absolute;
    right: 13px;
    top: 0.75rem;
    height: 30px;
    width: 60px;
    text-align: center;
}

#body .card.product .body {
    /* align-items: center;
    display: flex;
    justify-content: center;*/
    /*    padding: 1.5rem 1.5rem 1rem;*/
}

#body .card.product .body a {
    /*	display: table;*/
    display: flex;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    margin: auto;
    max-width: 90%;
    /*    text-align: center;*/
    text-align: start;
}

#body .card.product .footer {
    /*    padding: 0 1.5rem 1.5rem;*/
    padding: 0 1rem 0.9rem;
}

#body .card.product .footer .category {
    /*	background: #f4faff;*/
    border-radius: 1rem;
    /*    color: #000;*/
    color: gray;
    /*    display: table;*/
    display: inline-flex;
    /*font-size: 1.1rem;*/
    font-size: 1 rem;
    /*    font-weight: 500;*/
    font-weight: 700;
    /* margin: 0.5rem auto 0; */
    /*    padding: 0.75rem 1rem;*/
    padding: 0rem 0.2rem;
}

#body .card.product .footer .rating {
    /*    margin-top: 1.5rem;*/
    margin-top: 0.5rem;
}

#body .card.product .footer .rating svg {
    height: 18px;
    max-width: 20px;
}

#body .card.product:nth-child(odd) .header:before {
    transform: scaleX(-1);
}

.label.white {
    background: #fff !important;
    color: #909090 !important;
}

.label.silver {
    background: silver !important;
    color: #fff !important;
}

.right.floated {
    float: right;
}

.dimmer.modals {
    overflow-y: auto;
}

#vertical-divider {
    height: 100%;
    padding: 0;
    position: relative;
}

#vertical-divider:before {
    background: #ececec;
    content: "";
    height: 100%;
    position: absolute;
    width: 1px;
    z-index: 1;
}

#top-menu {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: 0 0 40px 20px rgba(0, 0, 0, 0.07);
    height: 75px;
    left: 0;
    margin: 0 auto;
    max-width: 100vw;
    padding: 0;
    width: 100%;
    z-index: 999;
}

#top-menu .logo img {
    max-width: 200px;
    min-width: 180px;
    width: 100%;
}

#top-menu .wrapper {
    display: flex;
    margin: auto;
    /*max-width: 1300px;*/
    width: 100%;
}

#top-menu .user:hover {
    color: #116ca2;
}

#top-menu .user>.left.menu {
    background: #f5f5f5;
    border-radius: 1rem;
    font-size: 1.1rem;
    margin-top: -1rem;
    min-width: 200px;
}

#top-menu .user>.left.menu>.item {
    color: #000 !important;
    font-weight: 400 !important;
    margin: 0 !important;
    padding-bottom: 1rem !important;
    padding-top: 1rem !important;
    position: relative;
}

#top-menu .user>.left.menu>.item.active,
#top-menu .user>.left.menu>.item.selected {
    background: transparent !important;
}

#top-menu .user>.left.menu>.item:hover {
    background: #9342b1 !important;
    color: #fff !important;
}

#top-menu .user>.left.menu>.item:first-child {
    background: #fff !important;
    border-radius: 1rem 1rem 0 0 !important;
    color: #000 !important;
}

#top-menu .user>.left.menu>.item:first-child:hover {
    background: #fff !important;
    font-weight: 500 !important;
}

#top-menu .user>.left.menu>.item:last-child {
    background: #fff !important;
    border-radius: 0 0 1rem 1rem !important;
    color: #000 !important;
}

#top-menu .user>.left.menu>.item:last-child:hover {
    background: #fff !important;
    font-weight: 700 !important;
}

#top-menu .user>.left.menu>.item.earnings {
    cursor: default;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    padding: 1.25rem 1rem !important;
    text-align: center;
}

#top-menu .user>.left.menu .left.menu {
    background: #fff;
    border-radius: 0.5rem 0 0 0.5rem !important;
    box-shadow: -3px 0 5px 1px #d1d1d1 !important;
    min-width: 200px;
    top: -42px !important;
}

#top-menu .user>.left.menu .left.menu .item {
    color: #000 !important;
    padding-bottom: 1rem !important;
    padding-top: 1rem !important;
    position: relative;
}

#top-menu .user>.left.menu .left.menu .item:hover {
    background: #f7f7f7 !important;
}

#top-menu .user>.left.menu .left.menu .item:hover:after {
    visibility: hidden;
}

#top-menu .user>.left.menu .left.menu .item:not(:last-child):after {
    background: #e0e0e0 !important;
    bottom: 0;
    content: "";
    height: 1px;
    left: 5%;
    position: absolute;
    width: 90%;
}

#top-menu .user>.left.menu .left.menu .item:not(:last-child):after:hover {
    background: #ececec !important;
}

#top-menu .dropdown.cart {
    position: relative;
}

#top-menu .dropdown.cart>div img {
    height: 30px;
    width: 30px;
}

#top-menu .dropdown.cart .items-wrapper {
    max-height: 300px;
    overflow-x: hidden;
    overflow-y: auto;
}

#top-menu .dropdown.cart .menu {
    border-radius: 1rem;
    margin-top: -1rem !important;
    margin-top: 0;
    max-width: 300px;
    min-width: 300px;
    position: absolute;
    right: 0;
    top: 80px;
    visibility: hidden;
}

#top-menu .dropdown.cart .items .item {
    cursor: text;
    display: flex;
    margin: 0 !important;
    /* width: 300px; */
}

#top-menu .dropdown.cart .items .item.checkout {
    background: #f35353;
    border-radius: 0 0 1rem 1rem !important;
    color: #fff;
    cursor: pointer;
    font-size: 1.28571429rem !important;
    font-weight: 700 !important;
    justify-content: center;
    margin: 0 !important;
    padding: 1rem;
    width: 100%;
}

#top-menu .dropdown.cart .items .item.checkout:active,
#top-menu .dropdown.cart .items .item.checkout:focus,
#top-menu .dropdown.cart .items .item.checkout:hover {
    background: #ed3838 !important;
    font-weight: 700 !important;
}

#top-menu .dropdown.cart .items .item:not(:last-child) {
    border-bottom: 1px solid #ebebeb;
}

#top-menu .dropdown.cart .items .item:hover {
    font-weight: 400 !important;
}

#top-menu .dropdown.cart .items .item .content {
    display: flex;
    flex: 1;
    flex-direction: column;
    font-size: 1.1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#top-menu .dropdown.cart .items .item strong {
    cursor: pointer;
    font-weight: 600;
    text-align: left;
}

#top-menu .dropdown.cart .items .item strong:hover {
    color: #346894;
}

#top-menu .dropdown.cart .items .item .subcontent {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#top-menu .dropdown.cart .items .item .subcontent input {
    border: 1px solid #dadada;
    box-shadow: none;
    padding: 0.35rem;
    width: 100%;
}

#top-menu .dropdown.cart .items .item .subcontent div {
    flex: 1;
    text-align: center;
}

#top-menu .dropdown.cart .items .item .subcontent div.price {
    color: #708090;
    flex: 2;
    text-align: left;
}

#top-menu .dropdown.cart .items .item .subcontent div.remove {
    cursor: pointer;
    text-align: right;
}

#top-menu .dropdown.cart .items .item .subcontent div.remove[disabled="disabled"] {
    cursor: default;
}

#top-menu .dropdown.cart .items .item .subcontent div.remove:not([disabled="disabled"]):hover i {
    font-weight: 700 !important;
}

#top-menu .dropdown.cart .items .item .image {
    background-position: bottom;
    background-size: cover;
    border-radius: 1rem;
    height: 50px;
    max-width: 50px;
    min-width: 50px;
    width: 100%;
}

#top-menu .dropdown.cart span {
    margin-left: 0.25rem;
}

#top-menu .dropdown.notifications>div img {
    height: 30px;
    width: 30px;
}

#top-menu .dropdown.notifications .menu {
    border-radius: 1rem;
    margin-top: -1rem !important;
    margin-top: 0;
    position: absolute;
    right: 0;
    top: 85px;
    visibility: hidden;
    width: 300px;
}

#top-menu .dropdown.notifications .menu .items-wrapper {
    max-height: 300px;
    overflow-x: hidden;
    overflow-y: auto;
}

#top-menu .dropdown.notifications .menu .item {
    border-radius: 0;
    margin: 0 !important;
    padding: 0.5rem;
    text-align: left;
}

#top-menu .dropdown.notifications .menu .item:hover {
    font-weight: 400 !important;
}

#top-menu .dropdown.notifications .menu .item:not(:last-child) {
    border-bottom: 1px solid #f5f5f5;
}

#top-menu .dropdown.notifications .menu .item .image {
    background-position: bottom;
    background-size: cover;
    border-radius: 100px;
    height: 50px !important;
    min-width: 50px;
    width: 50px !important;
}

#top-menu .dropdown.notifications .menu .item p,
#top-menu .dropdown.notifications .menu .item time {
    font-size: 0.9rem;
}

#top-menu .dropdown.notifications .menu .item time {
    float: right;
}

#top-menu .dropdown.notifications .menu .item.all {
    background: #0b93bc;
    border-radius: 0 0 1rem 1rem;
    color: #fff;
    font-weight: 700;
    justify-content: center;
    padding: 1rem;
    text-align: center !important;
}

#top-menu .dropdown.notifications .menu .item.all:hover {
    background: #0fb5e7 !important;
    font-weight: 700;
}

#top-menu .dropdown.notifications .menu div.item {
    cursor: auto;
}

#top-menu .dropdown.categories .menu {
    border-radius: 1rem;
    margin-top: -1rem;
    max-height: 300px;
    overflow: auto;
}

#top-menu .dropdown.categories .menu::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}

#top-menu .dropdown.categories .menu:hover {
    overflow: auto;
}

#top-menu .dropdown.categories .menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#top-menu .dropdown.categories .menu::-webkit-scrollbar-thumb {
    background: #c1c1c1;
}

#top-menu .dropdown.categories .menu::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

#top-menu .dropdown.search .menu {
    background: transparent;
    border-radius: 1rem;
    margin-top: -1rem !important;
    margin-top: 0;
    position: absolute;
    right: 0;
    top: 85px;
    visibility: hidden;
    width: 300px;
}

#top-menu .dropdown.search .menu .item {
    margin: 0;
    padding: 0;
}

#top-menu .dropdown.search .menu input {
    border: none;
    border-radius: 500px;
    font-size: 1.4rem;
}

#top-menu>.header {
    margin: 0;
    padding: 0 0 0 1rem !important;
    width: 180px;
}

#top-menu>.header img {
    width: 100%;
}

#top-menu .item {
    position: relative;
}

#top-menu .item:active,
#top-menu .item:focus,
#top-menu .item:hover {
    background: transparent !important;
    font-weight: 600 !important;
}

#top-menu .item.search input {
    border: none;
    border-radius: 1rem;
    box-shadow: inset 0 0 20px -13px #9d9d9d;
    height: 50px;
    min-width: 300px;
}

#top-menu .item.search i {
    opacity: 1;
}

#top-menu>.right.menu>.item {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 0.6rem;
    padding: 0 0.5rem;
    text-align: center;
}

#top-menu>.right.menu>.item span {
    margin-top: 0.5rem;
}

#top-menu>.right.menu>.item i {
    font-size: 1.3rem;
}

#top-menu>.right.menu>.item.search-icon {
    display: none;
}

#top-menu .right.menu>.item,
#top-menu>.item {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

#top-menu.home,
#top-menu.home-add_prepaid_credits,
#top-menu.home-checkout,
#top-menu.home-checkout-success,
#top-menu.home-product,
#top-menu.home-support {
    box-shadow: none;
}

#top-menu:not(.home) .right.menu>.item,
#top-menu:not(.home)>.item {
    color: #ffffff !important;
}

#top-menu .ui.dropdown .header {
    color: #fff;
    display: block;
    font-size: 1rem;
    margin: 0;
    padding: 1rem;
    position: relative;
    text-align: center;
    width: 100%;
}

#mobile-search-bar {
    background: #fff;
    display: none !important;
    height: 60px;
    left: 0;
    padding: 0.75rem;
    position: fixed;
    top: 60px;
    width: 100%;
    z-index: 99;
}

#mobile-menu {
    background: #16181d !important;   
    border: 0;
    border-radius: 1rem;
    box-shadow: none;
    height: calc(100vh - 2rem);
    left: 10px;
    margin: 0;
    overflow-y: auto;
    padding: 0.5rem;
    position: fixed;
    top: 1rem;
    visibility: hidden;
    width: 310px;
    z-index: 999;
}

#mobile-menu .wrapper {
    display: flex !important;
    flex-direction: column;
    height: 100%;
}

#mobile-menu .item {
    color: #ffffff !important;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 1rem;
    overflow: hidden;
    padding: 0.8rem 1rem;
    text-overflow: ellipsis;
    text-transform: capitalize;
    white-space: nowrap;
}

#mobile-menu .item i {
    float: left !important;
    margin-left: 0;
    margin-right: 1rem;
}

#mobile-menu .item:not(:last-child) {
    border-bottom: 1px dashed #e9e9e9;
}

#mobile-menu .item:hover {
    background: transparent;
    font-weight: 700;
}

#mobile-menu .item:before {
    display: none;
}

#mobile-menu .body,
#mobile-menu .sub-body {
    display: flex !important;
    flex: 1;
    flex-direction: column;
    /* justify-content: center; */
}

#mobile-menu .footer {
    background: linear-gradient(-14deg, #002542, #004d8a);
    border-radius: 0 0 0.25rem 0.25rem;
    margin: 8px -0.5rem -0.5rem;
    padding: 1rem;
}

#mobile-menu .footer i {
    font-size: 1.1rem;
}

#mobile-menu .footer p {
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: center;
}

#mobile-menu .footer * {
    color: #fff;
}

#mobile-menu .footer .button {
    padding: 0.5rem;
}

#mobile-menu .footer .button:hover {
    background: #001a2f !important;
}

#mobile-menu-2 {
    align-items: center;
    background: #fff;
    bottom: 0;
    display: none;
    height: 70px;
    justify-content: space-between;
    margin: 0;
    position: fixed;
    width: 100%;
    z-index: 1001;
    right: 0 !important;
}

#mobile-menu-2>.item {
    color: #000 !important;
    display: flex;
    flex: 1;
    flex-direction: column;
    font-size: 0.9rem;
    font-weight: 600;
    margin: auto 0;
    padding: 0.75rem 0.5rem;
    text-align: center;
}

#mobile-menu-2>.item span {
    position: absolute;
    right: auto;
    top: auto;
}

#mobile-menu-2>.item.ui.dropdown .menu {
    border-radius: 1rem !important;
    margin-bottom: 0.25rem;
}

#mobile-menu-2>.item.ui.dropdown .menu .item {
    color: #000 !important;
    display: block;
    font-size: 1rem !important;
    font-weight: 500 !important;
}

#mobile-menu-2>.item.active,
#mobile-menu-2>.item:active,
#mobile-menu-2>.item:focus,
#mobile-menu-2>.item:hover,
#mobile-menu-2>.item:visited {
    background: #f5f5f5;
}

#mobile-menu-2>.item .icon {
    margin-bottom: 0.25rem;
}

#mobile-menu-2>.item svg {
    height: 32px;
    width: 32px;
}

#mobile-menu-2>.item svg * {
    stroke: #565656 !important;
}

#blur {
    background: rgba(36, 93, 153, 0.43);
    height: 100%;
    top: 0;
    z-index: 8;
}

#blur,
#items-menu {
    left: 0;
    position: fixed;
    width: 100%;
}

#items-menu {
    background: #fff;
    display: none;
    top: 60px;
    z-index: 9;
}

#items-menu:after,
#items-menu:before {
    bottom: 20px;
    content: "";
    height: 50%;
    position: absolute;
    width: 50%;
    z-index: -1;
}

#items-menu:before {
    box-shadow: 3px 11px 9px 3px grey;
    left: 0;
    transform: rotate(-2deg);
}

#items-menu:after {
    box-shadow: -3px 11px 9px 3px grey;
    right: 0;
    transform: rotate(2deg);
}

#items-menu .categories {
    background: #fff;
    display: flex;
    height: 47px;
    overflow: hidden;
    text-align: left;
    white-space: nowrap;
    width: 100vw;
}

#items-menu .categories .wrapper>.item {
    color: #202020;
    cursor: pointer;
    display: inline-flex;
    font-size: 1rem;
    margin: 0;
    padding: 0.5rem;
    position: relative;
}

#items-menu .categories .wrapper>.item:last-child {
    margin-right: 1rem;
}

#items-menu .categories .wrapper>.item:hover {
    font-weight: 700;
}

#items-menu .categories .wrapper>.item:not(:first-child) {
    margin-left: -0.25rem;
}

#items-menu .categories .wrapper>.item:not(:last-child):after {
    background: #dfdfdf;
    content: "";
    height: 20px;
    left: auto;
    position: absolute;
    right: 0;
    top: 13.5px;
    width: 1px;
}

#items-menu .categories .wrapper>.item>span {
    border: 1px solid #e8e8e8;
    border-radius: 0.25rem;
    display: block;
    padding: 0.5rem;
}

#items-menu .categories .wrapper>.item .items {
    background: #fff;
    display: none;
    left: 0;
    max-height: calc(100vh - 113px);
    min-width: 200px;
    overflow-y: auto;
    position: absolute;
    top: 100%;
    z-index: 99;
}

#items-menu .categories .wrapper>.item .items .item {
    display: block;
    margin: 0;
    padding: 0.9rem;
    position: relative;
}

#items-menu .categories .wrapper>.item .items .item:not(:last-child):after {
    background: #f7f7f7;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 9;
}

#items-menu .categories .wrapper>.item.active .items {
    display: block;
}

.items-menu.popup {
    background: #fff;
    border-radius: 0 0 0.25rem 0.25rem;
    height: 100%;
    max-height: 260px;
    max-width: 200px;
    position: fixed;
    top: 107px !important;
    z-index: 9;
}

.items-menu.popup a {
    color: #000;
    display: block;
    padding: 0.5rem;
    position: relative;
}

.items-menu.popup a span {
    border: 1px solid #e8e8e8;
    border-radius: 0.25rem;
    display: block;
    padding: 0.5rem;
}

.items-menu.popup a:last-child {
    border-radius: 0 0 0.25rem 0.25rem;
}

.items-menu.popup a:not(:last-child):after {
    background: #e8e8e8;
    bottom: 0;
    content: "";
    height: 1px;
    left: 5%;
    position: absolute;
    width: 90%;
}

.items-menu.popup a.active {
    background: #fff;
    color: #000;
    font-weight: 700;
}

.items-menu.popup a:hover {
    font-weight: 700;
}

.items-menu.popup a:hover:after {
    visibility: hidden;
}

#top-search {
    background-position: 50%;
    background-size: cover;
    border: none;
    margin-top: -85px;
    -webkit-mask-image: url(/assets/images/tendra-top-mask.svg);
    -webkit-mask-position: bottom center;
    -webkit-mask-size: cover;
    min-height: 500px;
    padding: 2rem 0 10rem;
    position: relative;
    z-index: 2;
}

#top-search .column {
    margin-top: -2rem;
}

#top-search:before {
    background: linear-gradient(45deg, #ff4f67, #5d65ff);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

#top-search form {
    margin: 1rem auto auto;
    max-width: 500px;
    position: relative;
}

#top-search form .input {
    height: 55px;
}

#top-search form input {
    background: hsla(0, 0%, 100%, 0.149);
    border: none;
    border-radius: 0.75rem 0 0 0.75rem;
    color: #fff;
}

#top-search form .button {
    background: #639;
    border-radius: 0 0.75rem 0.75rem 0;
    color: #fff;
}

#top-search .header {
    background: transparent;
    color: #fff;
    display: inline-block;
    font-size: 2.9rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 800px;
    padding: 0.5rem 1rem;
}

#top-search .ui.grid {
    height: 100%;
    margin: 3rem 0 0 !important;
}

#mobile-top-search {
    display: none;
    font-size: 1.2rem;
    padding: 0.25rem 1rem;
    width: 100%;
    z-index: 3;
}

#mobile-top-search input {
    border: none;
    border-radius: 0.75rem;

}

#menu-cover {
    background-position: bottom;
    padding: 6rem 1rem !important;
    width: 100%;
}

#single-page {
    background: #fff;
    margin: 0 auto;
    max-width: 1100px;
    padding: 0 1rem;
}

#single-page .column {
    background: #fff;
    min-height: 80vh;
    padding: 1rem 0;
}

#single-page .title-wrapper {
    margin: 0 1rem;
    padding: 1rem;
    text-align: center;
}

#single-page .title-wrapper h1 {
    color: #515151;
    font-size: 2.8rem;
    text-align: center;
}

#single-page .page-content {
    margin-top: 2rem;
}

.section-title {
    text-align: center;
}

#recent-purchase-popup {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: hsla(0, 0%, 100%, 0.64);
    border-radius: 1rem;
    bottom: 1rem;
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.04);
    display: none;
    height: 100%;
    left: 1rem;
    max-height: 140px;
    max-width: 310px;
    min-height: 140px;
    position: fixed;
    width: 100%;
    z-index: 99;
}

#recent-purchase-popup * {
    color: #000;
}

#recent-purchase-popup .content {
    align-items: center;
    display: flex;
    height: 100%;
    padding: 1rem;
    position: relative;
}

#recent-purchase-popup .cover {
    background-position: 50%;
    background-size: cover;
    border-radius: 1rem 0 0 1rem;
    height: 100%;
    left: 0;
    min-height: 140px;
    min-width: 120px;
    position: absolute;
    top: 0;
    width: 120px;
}

#recent-purchase-popup .details {
    margin-left: 120px;
}

#recent-purchase-popup .details .header {
    align-items: center;
    display: flex;
    margin-bottom: 0.5rem;
}

#recent-purchase-popup .details .header .name {
    font-weight: 700;
    text-transform: capitalize;
}

#recent-purchase-popup .details .header img {
    border-radius: 500px;
    height: 35px;
    margin-right: 0.5rem;
    width: 35px;
}

#recent-purchase-popup .details .item {
    margin: 0.5rem 0 0;
}

#recent-purchase-popup .details .item span {
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
}

#recent-purchase-popup .details .price {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: rgba(195, 55, 100, 0.78);
    border-radius: 0.5rem;
    bottom: 0.5rem;
    color: #fff;
    font-family: system-ui;
    font-weight: 600;
    left: 0.5rem;
    line-height: 1;
    padding: 0.5rem;
    position: absolute;
}

#recent-purchase-popup .close {
    bottom: 1rem;
    cursor: pointer;
    position: absolute;
    right: 1rem;
}

.home-items {
    background: #fff;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    width: 100%;
}

.home-items:first-child {
    /* margin-top: 1rem; */
}

.home-items .ui.header {
    color: #0e76c4;
    font-size: 1.875rem;
    letter-spacing: 1.5px;
    line-height: 2;
    text-align: center;
}

.home-items .sub.header {
    color: #4f4f4f !important;
    font-size: 1.4rem !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    margin: 0.5rem auto !important;
    max-width: 800px;
}

.home-items .newest-item {
    border-radius: 1rem !important;
    max-width: 360px !important;
    padding: 0.75rem !important;
    width: 100%;
}

.home-items .newest-item .play {
    display: none;
}

.home-items .newest-item .card {
    border-radius: 1rem !important;
    overflow: hidden;
}

.home-items .newest-item .card .image {
    position: relative;
}

.home-items .newest-item .card .image .price {
    background: #fff;
    border-radius: 0.5rem;
    bottom: 0.5rem;
    color: #000;
    display: table;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
    padding: 0.5rem 0.25rem 0.25rem;
    position: absolute;
    right: 0.5rem;
    z-index: 1;
}

.home-items .newest-item .card .content {
    border-top: 0.35rem solid #fff !important;
}

.home-items .newest-item .card .content .name {
    color: #000;
    font-size: 1.2rem;
    line-height: 1.5;
}

.home-items .newest-item .ui.items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -0.5rem;
    padding: 0 1rem;
}

.home-items .newest-item .ui.items .item {
    background-size: cover;
    border-radius: 1rem;
    box-shadow: 0 6px 20.1px 4.9px rgba(94, 100, 117, 0.18);
    height: 114px;
    margin: 0.5rem;
    position: relative;
    width: 114px;
    z-index: 1;
}

.home-items .wrapper {
    margin: auto;
    max-width: 1200px;
}

.home-items .wrapper.newest .ui.items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -0.5rem;
    padding: 0 1rem;
}

.home-items .wrapper.newest .ui.items .item {
    display: block;
    height: auto;
    margin: 0.5rem;
    position: relative;
    width: 180px;
}

.home-items .wrapper.newest .ui.items .item .cover {
    background-position: 50%;
    background-size: contain;
    border-radius: 1.5rem;
    height: 180px;
    width: 100%;
}

.home-items .wrapper.newest .ui.items .item .title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 1.5rem;
    text-align: center;
}

.home-items .wrapper.newest .ui.items.six .item {
    width: 180px;
}

.home-items .wrapper.newest .ui.items.six .item .cover {
    height: 180px;
}

.home-items .wrapper.featured {
    margin-top: 5rem;
    max-width: 1400px;
}

.home-items .wrapper.featured .ui.secondary.menu {
    border-radius: 1rem;
    flex-wrap: wrap;
    font-size: 1.2rem;
    justify-content: center;
    padding: 1.25rem;
}

.home-items .wrapper.featured .ui.secondary.menu a {
    background: #fff;
    border-radius: 0.75rem;
    color: #000;
    font-weight: 500;
    line-height: 1.5;
    margin: 0.75rem;
}

.home-items .wrapper.featured .ui.secondary.menu a:hover {
    background: transparent;
}

.home-items .wrapper.featured .ui.secondary.menu a.active {
    box-shadow: 0 0 1px 1px #000;
}

/* .home-items .wrapper.featured .ui.doubling.cards {
    display: none !important;
} */

.home-items .wrapper.featured .ui.doubling.cards.active {
    display: flex !important;
}

.home-items .wrapper.free .cards {
    display: flex;
    justify-content: center;
}

.home-items .wrapper.free .card {
    max-width: 166px;
}

.home-items .wrapper.free .image {
    background: transparent;
    padding: 0.5rem;
}

.home-items .wrapper.free .image .thumbnail {
    background-position: 50%;
    background-size: cover;
    border-radius: 500px !important;
    height: 150px;
    margin: auto;
    overflow: hidden;
    padding: 0.5rem;
    width: 150px;
}

.home-items .wrapper.free .title {
    font-weight: 600;
    margin-top: 0.5rem;
    text-align: center;
}

.home-items .wrapper.pricing .cards {
    justify-content: center;
}

.home-items .wrapper.pricing .card {
    background: transparent;
    box-shadow: none !important;
}

.home-items .wrapper.pricing .card .contents {
    background: #fff;
    border-radius: 1.5rem !important;
    box-shadow: 0 6px 20.1px 4.9px rgba(176, 191, 238, 0.12) !important;
    height: 100%;
    margin-left: auto;
    min-height: 300px;
    padding-bottom: 100px;
    position: relative;
    width: calc(100% - 50px);
}

.home-items .wrapper.pricing .card .content.description {
    padding: 1rem 2.5rem;
}

.home-items .wrapper.pricing .card .content.description .item {
    align-items: center;
    border-radius: 0.75rem;
    display: flex;
    font-size: 1.1rem;
    font-weight: 500;
}

.home-items .wrapper.pricing .card .content.description .item:not(:last-child) {
    margin-bottom: 0.75rem;
}

.home-items .wrapper.pricing .card .content.description .item .icon {
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.09);
    border-radius: 500px;
    display: flex;
    height: 30px;
    margin-right: 1rem;
    padding: 0.5rem;
    width: 30px;
}

.home-items .wrapper.pricing .card .content.description .item .icon img {
    width: 100%;
}

.home-items .wrapper.pricing .card .content.description .item .icon:not(.included) {
    background: #ddd !important;
    height: 29px;
    padding: 0.6rem;
    width: 29px;
}

.home-items .wrapper.pricing .card .content.description .item .icon:not(.included) img {
    display: none;
}

.home-items .wrapper.pricing .card .content.price {
    color: #313434;
    font-size: 2.5rem !important;
    font-weight: 700;
    line-height: 1;
    padding: 3.5rem 1rem 2rem;
    text-align: center;
}

.home-items .wrapper.pricing .card .content.price span {
    display: block;
    font-size: 1.1rem;
    margin-top: 0.75rem;
}

.home-items .wrapper.pricing .card .content.buy {
    bottom: 0;
    padding: 1.5rem;
    position: absolute;
    text-align: center;
    width: 100%;
}

.home-items .wrapper.pricing .card .content.buy a {
    border-radius: 1rem;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: auto;
    padding-bottom: 0.75rem;
    padding-top: 1rem;
}

.home-items .wrapper.pricing .card .content.buy a:hover {
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.09);
}

.home-items .wrapper.pricing .card .name {
    border-radius: 1rem 0 0 1rem;
    color: #fff;
    display: flex;
    padding: 1rem;
    position: absolute;
    right: 100%;
    text-align: center;
    top: 50px;
    width: 40px;
}

.home-items .wrapper.pricing .card .name span {
    font-size: 1.2rem;
    font-weight: 600;
    right: -3px;
    text-transform: uppercase;
    transform: rotate(180deg);
    writing-mode: vertical-lr;
}

.home-items .wrapper.posts {
    margin-bottom: 2rem;
    margin-top: 7rem;
    max-width: 1100px;
}

.home-items .wrapper.posts .card {
    border-radius: 1rem !important;
    box-shadow: 0 6px 20.1px 4.9px rgba(176, 191, 238, 0.12) !important;
    overflow: hidden;
}

.home-items .wrapper.posts .card .content.description {
    color: grey;
    font-size: 0.9rem;
    padding: 0 1.5rem 1rem;
}

.home-items .wrapper.posts .card .content.metadata {
    align-items: center;
    display: flex;
    padding: 1.5rem;
}

.home-items .wrapper.posts .card .content.metadata .left {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 0 0 2px #ff9c3a;
    color: #ff8900;
    font-weight: 600;
    margin-right: 1rem;
    padding: 0.5rem;
    text-align: center;
    width: 90px;
}

.home-items .wrapper.posts .card .content.metadata .right {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.5;
    overflow: hidden;
    padding: 0.5rem;
    text-overflow: ellipsis;
}

.home-items .wrapper.posts .card .content.metadata .right a {
    color: #000 !important;
    font-weight: 500;
}

.home-items .wrapper.posts .card .content.action {
    padding: 0 1.5rem 1.5rem;
}

.home-items .wrapper.posts .card .content.action a {
    color: #000;
    font-weight: 500;
}

.home-items .pricing.container {
    background: #fcfcfc;
    margin: 4rem -1rem 0;
    padding: 2rem 1rem;
}

.home-items .pricing.container.no-items {
    background: #fff;
    margin: 2rem -1rem 4rem;
}

.home-items .content {
    padding: 0.5rem 1rem;
}

.selection-title .menu {
    background: transparent;
}

.selection-title .menu a:after,
.selection-title .menu a:before {
    display: none;
}

.selection-title .menu a {
    background: transparent !important;
    border: 1px solid grey;
    color: #000 !important;
    font-size: 18px;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.selection-title .menu a:not(:last-child) {
    margin-right: 0.5rem;
}

.selection-title .menu a.active,
.selection-title .menu a:hover {
    background: transparent !important;
    color: #000;
    font-weight: 700 !important;
}

.selection-title .menu a.active span,
.selection-title .menu a:hover span {
    background: linear-gradient(90deg, #ff4335, #ffcc31, #fff);
    border-radius: 100%;
    bottom: 0;
    height: 3px;
    left: 0;
    position: absolute;
    width: 100%;
}

#notifications {
    background: #f8f8ff;
    margin: -1rem auto 0 !important;
    padding: 1rem;
    width: 100%;
}

#notifications .column {
    background: #fff;
    border-radius: 0.5rem !important;
}

#notifications .column.items {
    min-height: 500px;
}

#notifications .column.items .items.unstackable {
    background: #f8f8ff;
    border-radius: 0.25rem;
}

#notifications .column.items .items.unstackable .item {
    align-items: flex-end;
    background: #fafafa;
    border-radius: 0;
    margin: 0 !important;
    min-height: 70px;
    padding: 1rem;
    text-align: left;
}

#notifications .column.items .items.unstackable .item>* {
    align-self: center;
}

#notifications .column.items .items.unstackable .item:not(:last-child) {
    border-bottom: 2px solid #fff;
}

#notifications .column.items .items.unstackable .item .image {
    height: 50px !important;
    width: 50px !important;
}

#notifications .column.items .items.unstackable .item time {
    color: #6f6f6f;
}

#notifications .column.items .items.unstackable .item.unread {
    background: #fff;
    font-weight: 600;
}

#notifications .column.items .items.unstackable .item:first-child {
    border-radius: 0.5rem 0.5rem 0 0;
}

#notifications .column.items .items.unstackable .item:last-child {
    border-radius: 0 0 0.5rem 0.5rem !important;
}

#footer {
    background: linear-gradient(45deg, #ff4f67, #8d5dff);
    /* color: #fff; */
    
    -webkit-mask-image: url(https://readystl.com/assets/images/affiliate-top-mask.svg);
    -webkit-mask-position: top center;
    -webkit-mask-size: cover;
    min-height: 300px;
    padding-bottom: 1rem !important;
    padding-top: 10rem !important;
    width: 100%;
    z-index: 1;
}

#footer .heading {
    margin: 0 auto 2rem;
    max-width: 1000px;
    text-align: center;
}

#footer .heading .header {
    line-height: 1.5;
    font-size: 4rem !important;
    font-weight: 700;
}

#footer .heading .description {
    font-size: 1.5rem !important;
    line-height: 1.3;
    margin: 2rem auto 0;
    max-width: 700px;
    width: 100%;
}

#footer .copyright {
    color: hsla(0, 0%, 100%, 0.26);
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 2rem;
    text-align: center;
}

#footer .footer-menu {
    display: flex;
    justify-content: center;
}

#footer .footer-menu .ui.menu {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1100px;
    width: 100%;
}

#footer .footer-menu .ui.menu>.item {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 0.75rem;
    color: #fff;
    font-size: 1.2rem;
    margin: 0.5rem;
}

#footer .footer-menu .ui.menu>.item:hover {
    color: #fff;
    font-weight: 600;
}

#footer .footer-menu .dropdown .menu {
    border: none !important;
    border-radius: 0.75rem !important;
    box-shadow: none !important;
    overflow: hidden;
}

#footer .footer-menu .dropdown .menu .wrapper {
    max-height: 120px;
    overflow: auto;
}

#footer .footer-menu .dropdown .menu .header {
    background: #ffff51;
    color: #000 !important;
    font-size: 1rem !important;
    margin: 0 !important;
    padding: 1rem !important;
}

#footer .footer-menu .dropdown .menu .item:not(.header) {
    border-radius: 0 !important;
    margin: 0 !important;
    text-transform: capitalize;
    width: 100%;
}

#footer .footer-menu .dropdown .menu .item:not(.header):hover {
    background: transparent !important;
    font-weight: 600;
}

#app.home-product #footer {
    padding-bottom: 76px !important;
}

#app.home #top-menu .dropdown.cart>div img,
#app.home #top-menu .dropdown.notifications>div img {
    /* filter: invert(1); */
}

#page-title {
    background: #fff;
    border-bottom: 1rem solid #f8f8ff;
    border-radius: 0.25rem 0.25rem 0 0;
}

#page-title .header {
    color: #000;
}

#page-title .item .content {
    align-self: center;
}

#items {
    background: radial-gradient(#fff, #f9f9f9, #f7f7f7, #fff);
    margin-top: -1rem !important;
    padding: 2.5rem 0;
}

#items i.tag {
    color: tomato;
}

#items .row {
    background: transparent;
    margin: auto;
    max-width: 1300px;
}

#items .row:first-child .sub.header {
    line-height: 1.5;
}

#items .column.left {
    margin-right: 1rem;
    max-width: 320px;
    padding: 0;
    visibility: visible;
    width: 320px;
    z-index: 2;
}

#items .column.left .categories,
#items .column.left .filter.cities,
#items .column.left .filter.countries,
#items .column.left .price,
#items .column.left .tags {
    background: #fff;
    border-radius: 2rem !important;
    overflow: hidden;
    padding: 2rem;
}

#items .column.left .categories *,
#items .column.left .filter.cities *,
#items .column.left .filter.countries *,
#items .column.left .price *,
#items .column.left .tags * {
    font-size: 1.1rem;
}

#items .column.left .categories .title,
#items .column.left .filter.cities .title,
#items .column.left .filter.countries .title,
#items .column.left .price .title,
#items .column.left .tags .title {
    background: #f8f8f8;
    border-radius: 1rem;
    color: #000;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 1rem;
    padding: 1.25rem 1.5rem 1rem;
    position: relative;
    text-align: left;
    text-transform: uppercase;
}

#items .column.left .filter.cities,
#items .column.left .filter.countries {
    overflow: visible;
}

#items .column.left .filter.cities .ui.dropdown,
#items .column.left .filter.countries .ui.dropdown {
    border-radius: 1rem !important;
}

#items .column.left .filter.cities .ui.dropdown .label,
#items .column.left .filter.countries .ui.dropdown .label {
    border-radius: 100px;
}

#items .column.left .filter.cities .ui.dropdown .menu,
#items .column.left .filter.countries .ui.dropdown .menu {
    border-radius: 1rem !important;
}

#items .column.left .categories .item {
    padding: 0.85rem 1rem;
}

#items .column.left .categories .item:hover {
    background: transparent;
    color: #414040 !important;
    font-weight: 600;
}

#items .column.left .categories .vertical.menu {
    border-radius: 1rem;
    overflow: hidden;
}

#items .column.left .categories .header {
    font-weight: 500;
    text-transform: capitalize;
}

#items .column.left .categories .category .children {
    display: none;
}

#items .column.left .categories .category.active .children {
    display: block;
    position: relative;
}

#items .column.left .categories .category.active .children .item {
    color: #727272;
}

#items .column.left .categories .category.active .children .item.active {
    background: transparent;
    color: #f90;
    font-weight: 700;
}

#items .column.left .categories .category.active .header span {
    color: #0789ba;
}

#items .column.left .tags .title:before {
    background: #ff5b5b;
}

#items .column.left .tags label span {
    bottom: -2px;
    position: relative;
}

#items .column.left .tags .item {
    padding: 0.85rem 1rem;
}

#items .column.left .tags .item:hover {
    background: transparent;
    color: #414040 !important;
    font-weight: 700;
}

#items .column.left .tags .vertical.menu {
    border-radius: 1rem;
    height: 300px;
    overflow: hidden;
    padding-right: 1rem;
}

#items .column.left .tags .vertical.menu:hover {
    overflow: auto;
    padding-right: 0;
}

#items .column.left .price .title:before {
    background: #e03997;
}

#items .column.left .price label {
    text-align: center;
}

#items .column.right {
    background: transparent;
    flex: 1;
    min-height: 100vh;
}

#items .column.right .ui.menu {
    overflow: auto;
}

#items .column.right .ui.menu.filter {
    background: transparent;
    font-size: 1.1rem;
    min-height: 44px;
    padding-bottom: 1rem;
}

#items .column.right .ui.menu.filter input {
    border: none;
    box-shadow: inset 0 0 0 1000px #fff !important;
}

#items .column.right .ui.menu.filter>.item {
    background: #fff;
    border: 2px solid #fff;
    border-radius: 1rem;
    box-shadow: inset 0 0 0 3px #fff;
    color: #000;
    font-weight: 500;
}

#items .column.right .ui.menu.filter>.item .active:not(.search),
#items .column.right .ui.menu.filter>.item.selected,
#items .column.right .ui.menu.filter>.item:hover:not(.search) {
    background: #8b56ff;
    border: 2px solid #8b56ff;
    color: #fff;
    font-weight: 600;
}

#items .column.right .ui.menu.filter>.item .menu {
    margin-top: 0.5rem;
}

#items .column.right .ui.menu.filter>.item:not(:last-child) {
    margin-right: 0.5rem;
}

#items .column.right .ui.menu.filter>.item.search-form {
    background: #fff;
    border: 1px solid #ececec;
    margin-right: 0 !important;
}

#items .column.right .ui.menu.results {
    align-items: center;
    background: transparent;
    font-size: 1.2rem;
    margin: -1rem -1rem 0;
    padding: 1rem 1rem 0;
}

#items .column.right .ui.menu.results .item.header {
    color: #484848;
    font-size: 1.3rem;
    padding: 1rem;
}

#items .column.right .ui.menu.results .item.remove {
    background: #ffcc3b;
    border: 2px solid #ffcc3b;
    border-radius: 500px;
    color: #000;
    display: table;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-right: 1rem;
    padding: 0.5rem !important;
}

#items .column.right .ui.card {
    box-shadow: none;
}

#items .column.right .divider {
    border-color: #f3f3f3 !important;
    border-width: 0.5px;
}

#item {
    background: radial-gradient(#fff, #f9f9f9, #f7f7f7, #fff);
    margin-top: -1rem !important;
    overflow: hidden;
    width: 100%;
}

#item input,
#item textarea {
    border-radius: 1rem !important;
}

#item #header {
    background: #fff;
    margin: 0;
    padding: 2rem;
    position: relative;
    width: 100%;
}

#item #header:before {
    background: radial-gradient(#efefef, transparent);
    border-radius: 500%;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

#item #header .container {
    align-items: center;
    display: flex;
    margin: auto;
    max-width: 1080px;
}

#item #header .container>div {
    flex: 1;
}

#item #header .thumb {
    display: flex;
    margin-right: 2rem;
    max-width: 150px;
}

#item #header .thumb img {
    border-radius: 1rem;
    width: 100%;
}

#item #header .content {
    display: block;
}

#item #header .title {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(90deg, #30cfd0 0, #330867);
    -webkit-background-clip: text;
    background-image: linear-gradient(45deg, #d9d480, #bd3d61);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
}

#item #header .description {
    color: #2a2a2a;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 1rem;
}

#item>.message {
    background: #fff;
    border-left: 0.5rem solid #6953ad;
    border-radius: 0 1rem 1rem 0;
    box-shadow: none;
    color: #6953ad;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem auto 0;
    max-width: 1080px;
}

#item>.purchase {
    background: #a153b7;
    bottom: 0;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 9;
}

#item>.purchase.fixed {
    position: fixed;
}

#item>.purchase input {
    -moz-appearance: textfield;
    border-radius: 0 !important;
    color: #fff;
}

#item>.purchase input::-webkit-inner-spin-button,
#item>.purchase input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

#item>.purchase>.ui.menu {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: inline-flex;
    justify-content: center;
    margin: 0 auto !important;
    min-height: 60px;
}

#item>.purchase>.ui.menu .ui.dropdown {
    background: transparent;
    border: none;
    border-radius: 0 !important;
    box-shadow: none;
}

#item>.purchase>.ui.menu .ui.dropdown.licenses>.text {
    background: #fff;
    border-radius: 0.5rem;
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
}

#item>.purchase>.ui.menu .ui.dropdown:before {
    visibility: hidden;
}

#item>.purchase>.ui.menu .ui.dropdown .item {
    font-size: 1.1rem !important;
    min-height: 45px;
}

#item>.purchase>.ui.menu>.item {
    border-radius: 0;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
}

#item>.purchase>.ui.menu>.item.header {
    background: #7a388d;
}

#item>.purchase>.ui.menu>.item.header.has-promo:not(.is-free) .price:not(.promo) {
    font-size: 1rem;
    margin-left: 1rem;
    opacity: 0.5;
    text-decoration: line-through;
}

#item>.purchase>.ui.menu>.item:before {
    visibility: hidden;
}

#item>.purchase>.ui.menu>.item:not(:last-child) {
    border-right: 2px solid #fff;
}

#item>.purchase>.ui.menu>.item.custom-price {
    max-width: 205px;
}

#item>.purchase:before {
    background: radial-gradient(#efefef, transparent);
    border-radius: 500%;
    bottom: 100%;
    content: "";
    display: none;
    height: 3px;
    left: 0;
    position: absolute;
    width: 100%;
}

#item>.time-counter {
    background: #fff;
    border-radius: 1rem;
    display: none;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2rem auto 0;
    max-width: 1080px;
    padding: 1.5rem;
    text-align: center;
}

#item>.time-counter .text {
    background-image: linear-gradient(45deg, #006d85, #00d1ff);
}

#item>.time-counter .text,
#item>.time-counter .time {
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

#item>.time-counter .time {
    background-image: linear-gradient(301deg, #00d1ff, #097891);
    margin-left: 0.25rem;
}

#item>.main.row {
    display: flex;
    margin: 0 auto;
    max-width: 1140px;
    padding: 2rem;
}

#item .l-side {
    overflow: hidden;
    background: #fff;
    border-radius: 1rem;
    flex: 1;
    font-size: 1.1rem;
    margin-right: 2rem !important;
    position: relative;
}

#item .l-side .faq,
#item .l-side .hidden-content,
#item .l-side .reviews,
#item .l-side .streaming,
#item .l-side .support,
#item .l-side .table_of_contents {
    display: none;
    min-height: 500px;
    padding: 2rem !important;
}

#item .l-side .streaming {
    min-height: 300px;
}

#item .l-side .top.menu {
    align-items: center;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    min-height: 70px;
    overflow: auto;
    padding: 1rem !important;
    position: relative;
}

#item .l-side .top.menu .item.dropdown {
    display: none;
}

#item .l-side .top.menu .item {
    background: #fff;
    border-radius: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1rem;
}

#item .l-side .top.menu .item.active {
    background: #1e90ff;
    color: #fff;
}

#item .l-side .row.item .column {
    padding: 0;
}

#item .l-side .row.item .card {
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0;
    overflow: hidden;
    padding: 1rem;
}

#item .l-side .row.item .card .content {
    border-top: none;
}

#item .l-side .row.item .card .content.features.body img,
#item .l-side .row.item .card .content.requirements.body img {
    width: auto;
}

#item .l-side .row.item .card img {
    width: 100%;
}

#item .l-side .row.item .card.screenshots {
    background: #f9f9f9;
    border-radius: 0 !important;
    padding: 0 !important;
    width: auto;
}

#item .l-side .row.item .card .content.images .ui.items {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: -1rem;
    overflow: hidden;
    padding: 0 1rem;
}

#item .l-side .row.item .card .content.images .item {
    background-position: 50%;
    background-size: cover;
    border-radius: 1rem;
    cursor: pointer;
    height: 100px;
    margin: 0.5rem;
    min-height: 100px;
    min-width: 100px;
    width: 100px;
}

#item .l-side .details {
    min-height: 500px;
    padding-top: 1rem;
}

#item .l-side .sharer {
    bottom: 5%;
    color: #fff;
    font-weight: 700;
    position: absolute;
    right: calc(100% + 1rem);
    text-transform: uppercase;
}

#item .l-side .sharer .buttons .item {
    display: block;
    height: 35px;
    width: 35px;
}

#item .l-side .sharer .buttons .item:not(:last-child) {
    margin-bottom: 0.5rem;
}

#item .l-side .sharer .buttons .item img {
    border-radius: 0.5rem;
    width: 100%;
}

#item .l-side .hidden-content {
    background: #fff;
    border-radius: 2rem !important;
    overflow: auto;
    padding: 2rem !important;
}

#item .l-side .table_of_contents .segments {
    border: none;
    border-radius: 2rem !important;
    overflow: hidden;
}

#item .l-side .table_of_contents .segment.secondary {
    background: #f8f8ff;
    font-weight: 600;
}

#item .l-side .screenshots .ui.items {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow: hidden;
    padding: 1rem;
}

#item .l-side .screenshots .item {
    background-position: 50%;
    background-size: cover;
    border-radius: 2rem;
    cursor: pointer;
    height: 97px;
    margin: 0.5rem;
    width: 97px;
}

#item .l-side .stream-player {
    margin: -2rem;
    position: relative;
    width: auto;
}

#item .l-side .stream-player .controls {
    background: rgba(0, 0, 0, 0.42);
    display: flex;
    height: 50px;
    left: 0;
    padding: 0.75rem;
    position: absolute;
    top: calc(100% - 50px);
    width: 100%;
    z-index: 1;
}

#item .l-side .stream-player .controls .maximize,
#item .l-side .stream-player .controls .play,
#item .l-side .stream-player .controls .stop,
#item .l-side .stream-player .controls .volume {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 30px;
    justify-content: center;
    max-width: 30px;
}

#item .l-side .stream-player .controls .current-time {
    align-items: center;
    bottom: -2px;
    color: #fff;
    display: flex;
    flex: none;
    font-size: 1rem;
    height: 30px;
    margin-right: 1rem;
    position: relative;
}

#item .l-side .stream-player .controls .stop,
#item .l-side .stream-player .controls .volume {
    margin-right: 1rem;
}

#item .l-side .stream-player .controls .volume {
    position: relative;
}

#item .l-side .stream-player .controls .volume div {
    bottom: 100%;
    cursor: default;
    display: none;
    height: 125px;
    left: 0;
    position: absolute;
    width: 30px;
}

#item .l-side .stream-player .controls .volume div>span {
    background: hsla(0, 0%, 100%, 0.5);
    border-radius: 100px;
    bottom: 0;
    height: 120px;
    left: 10px;
    margin-bottom: 5px;
    overflow: hidden;
    position: absolute;
    width: 10px;
}

#item .l-side .stream-player .controls .volume div>span span {
    background: #fff;
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
}

#item .l-side .stream-player .controls .volume:hover div {
    display: block;
}

#item .l-side .stream-player .controls img {
    filter: invert(1);
    width: 30px;
}

#item .l-side .stream-player .controls>div {
    flex: 1;
}

#item .l-side .stream-player .controls>.wave {
    background: hsla(0, 0%, 100%, 0.12);
    border-radius: 100px;
    height: 30px;
    margin: auto 1.5rem;
    -webkit-mask-image: url(/assets/images/wave-3.png);
    -webkit-mask-position: center;
    -webkit-mask-repeat: repeat;
    -webkit-mask-size: contain;
    overflow: hidden;
    position: relative;
}

#item .l-side .stream-player .controls>.wave .time {
    background: linear-gradient(45deg, #002941, rgba(24, 255, 238, 0.84));
    border-radius: 100px 0 0 100px;
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 0;
    z-index: 9999;
}

#item .l-side .stream-player .video {
    background: transparent;
    height: calc(100% - 50px);
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

#item .l-side .stream-player video {
    position: relative;
    z-index: 0;
}

#item .l-side .stream-player .download {
    border-radius: 100px;
    color: #fff;
    display: flex;
    padding: 0.5rem;
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    z-index: 9;
}

#item .l-side .stream-player .download img {
    height: 25px;
    opacity: 0.3;
    width: 25px;
}

#item .l-side .stream-player .download:hover img {
    opacity: 1;
}

#item .l-side .reviews textarea {
    height: 80px;
    min-height: 80px;
}

#item .l-side .reviews .items {
    border: 1px solid #ededed;
    border-radius: 2rem;
}

#item .l-side .reviews .items h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    text-transform: capitalize;
}

#item .l-side .reviews .items .item:not(:last-child) {
    border-bottom: 1px solid #fff;
}

#item .l-side .reviews .items .item {
    display: flex;
    padding: 1rem !important;
}

#item .l-side .reviews .items .item .content {
    flex: 1;
    padding-left: 1rem;
}

#item .l-side .reviews .items .item .ui.label {
    font-weight: 400;
    padding: 0.25rem 0.35rem;
}

#item .l-side .reviews .items .item .rating {
    float: right;
}

#item .l-side .reviews .items .item .rating svg {
    width: 14px;
}

#item .l-side .reviews .items .ui.form {
    border-top: 1px solid #e1e1e1;
    padding: 1rem 0 0 !important;
}

#item .l-side .reviews .items .ui.form .ui.rating {
    font-size: 1.2rem;
}

#item .l-side .reviews .items:not(:first-child) {
    margin-top: 1rem;
}

#item .l-side .reviews .ui.image {
    height: 100%;
    max-width: 60px;
    width: 100%;
}

#item .l-side .support .ui.form.right.floated {
    align-items: normal;
    display: flex;
    justify-content: center;
}

#item .l-side .support textarea {
    height: 80px;
    min-height: 80px;
}

#item .l-side .support .label {
    border-radius: 100px;
}

#item .l-side .support .comments-wrapper .item {
    border: 1px solid #f3f3f3;
    border-radius: 2rem;
    overflow: hidden;
}

#item .l-side .support .comments-wrapper h3 {
    color: #516974;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

#item .l-side .support .comments-wrapper .item:not(:last-child) {
    border-bottom: 1px solid #fff;
}

#item .l-side .support .comments-wrapper .children,
#item .l-side .support .comments-wrapper .parent {
    position: relative;
}

#item .l-side .support .comments-wrapper .children .main,
#item .l-side .support .comments-wrapper .parent .main {
    display: flex;
    padding: 1rem;
}

#item .l-side .support .comments-wrapper .children .content,
#item .l-side .support .comments-wrapper .parent .content {
    color: #8b8b8b;
    flex: 1;
    line-height: 1.3;
    padding-left: 1rem;
}

#item .l-side .support .comments-wrapper .children .content span.right.floated,
#item .l-side .support .comments-wrapper .parent .content span.right.floated {
    color: #5e5f60;
    font-size: 0.9rem;
}

#item .l-side .support .comments-wrapper:not(:first-child) {
    margin-top: 1rem;
}

#item .l-side .support .comments-wrapper .children {
    margin-left: auto;
    margin-top: 1rem;
    width: 95%;
}

#item .l-side .support .comments-wrapper .children .ui.image {
    max-width: 50px;
}

#item .l-side .support .comments-wrapper .children .main {
    padding-left: 2rem !important;
}

#item .l-side .support .ui.image {
    max-width: 60px;
    width: 100%;
}

#item .l-side .support .ui.image img {
    border-radius: 500px !important;
}

#item .l-side .support .extra {
    align-items: center;
    background: #f8f8ff;
    display: flex;
    height: 46px;
    padding: 0.5rem 1.5rem;
}

#item .l-side .support .extra .count {
    margin-left: auto;
}

#item .l-side .support .extra .saved-reactions {
    align-items: center;
    background: transparent !important;
    cursor: default;
    display: flex;
    justify-content: center;
    padding: 0.25rem !important;
}

#item .l-side .support .extra .saved-reactions.selected,
#item .l-side .support .extra .saved-reactions.visited,
#item .l-side .support .extra .saved-reactions:hover {
    background: transparent !important;
}

#item .l-side .support .extra .saved-reactions span {
    background-position: 50%;
    background-size: contain;
    border: 3px solid #fff;
    border-radius: 100px;
    cursor: pointer;
    display: block;
    filter: contrast(1.1);
    height: 25px !important;
    margin: 0 -0.2rem;
    text-align: center;
    width: 25px;
}

#item .l-side .support .like {
    margin-right: 1rem;
    padding: 0.35rem;
}

#item .l-side .support .like .menu {
    border-radius: 100px !important;
    box-shadow: none;
}

#item .l-side .support .like .reactions {
    align-items: center;
    background: transparent !important;
    cursor: default;
    display: flex;
    justify-content: center;
    padding: 0.25rem !important;
}

#item .l-side .support .like .reactions.selected,
#item .l-side .support .like .reactions.visited,
#item .l-side .support .like .reactions:hover {
    background: transparent !important;
}

#item .l-side .support .like .reactions a {
    background-position: 50%;
    background-size: 170%;
    display: block;
    filter: contrast(1.1);
    height: 35px !important;
    margin: 0 0.2rem;
    text-align: center;
    width: 35px;
}

#item .l-side .support .like img {
    height: 25px !important;
    width: 25px !important;
}

#item .l-side .support .ui.form {
    align-items: normal;
    display: flex;
    justify-content: flex-end;
}

#item .l-side .card .content.images .column {
    cursor: default;
    width: auto !important;
}

#item .l-side .card .content.images .column span {
    border: 1px solid #ebebeb;
    display: flex;
    flex-direction: column;
    height: 100px;
    justify-content: center;
    margin-right: -1rem;
    overflow: hidden;
    padding: 0 0.5rem;
    text-align: center;
    width: 100px;
}

#item .l-side .card .content.images .column img {
    cursor: pointer;
    height: auto;
    width: auto;
}

#item .l-side .overview img {
    display: block;
    margin: auto;
    max-width: -moz-fit-content;
    max-width: fit-content;
    width: 80% !important;
}

#item .l-side #files-list {
    min-height: 700px;
}

#item .l-side #files-list .item {
    align-items: center;
    background: #f8f8ff;
    border-radius: 100px;
    display: flex;
    flex: 1;
    font-weight: 600;
    padding: 1.5rem;
    text-transform: capitalize;
}

#item .l-side #files-list .item:not(:last-child) {
    margin-bottom: 0.5rem;
}

#item .r-side {
    background: #fff;
    border-radius: 1rem;
    max-width: 350px;
    visibility: visible;
    width: 100%;
}

#item .r-side .card {
    border: none;
    border-radius: 2rem !important;
    box-shadow: none !important;
    overflow: hidden;
    padding: 1rem;
}

#item .r-side .card.item-details .header {
    background: #f8f8f8;
    border-radius: 1rem;
    color: #000;
    font-size: 1.5rem !important;
    font-weight: 600;
    padding: 0.85rem 1rem;
    text-align: center;
}

#item .r-side .card.item-details table {
    border: none;
}

#item .r-side .card.item-details table td,
#item .r-side .card.item-details table th {
    padding: 1rem 0;
}

#item .r-side .card.item-details table tr td:nth-child(odd) {
    width: 40%;
}

#item .r-side .card.item-details table tr td:nth-child(2n) {
    text-align: right;
    word-break: break-word;
}

#item .r-side .card.tags .header {
    background: #f8f8f8;
    border-radius: 1rem;
    color: #000;
    font-size: 1.5rem !important;
    font-weight: 600;
    padding: 0.85rem 1rem;
    text-align: center;
}

#item .r-side .card.tags .labels {
    margin: -0.25rem;
}

#item .r-side .card.tags .label {
    background: #f8f8ff;
    border-color: #f8f8ff;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0.25rem !important;
    padding: 0.75rem 1rem !important;
    text-transform: capitalize;
}

#reactions {
    background: transparent;
    box-shadow: none;
    max-width: 400px;
    width: 100%;
}

#reactions .header {
    background: #f8f8ff;
    border-radius: 1rem 1rem 0 0 !important;
}

#reactions .header .wrapper {
    display: flex;
}

#reactions .header .name {
    background-position: 50%;
    background-size: cover;
    border: 3px solid #fff;
    border-radius: 100px;
    display: block;
    filter: contrast(1.1);
    height: 45px !important;
    margin: 0.5rem 0.5rem 1rem;
    position: relative;
    text-align: center;
    width: 45px;
}

#reactions .header .name.active {
    color: #2f86b9;
}

#reactions .header .name.like {
    background-image: url(/assets/images/reactions/like.png);
}

#reactions .header .name.love {
    background-image: url(/assets/images/reactions/love.png);
}

#reactions .header .name.angry {
    background-image: url(/assets/images/reactions/angry.png);
}

#reactions .header .name.funny {
    background-image: url(/assets/images/reactions/funny.png);
}

#reactions .header .name.sad {
    background-image: url(/assets/images/reactions/sad.png);
}

#reactions .header .name.wow {
    background-image: url(/assets/images/reactions/wow.png);
}

#reactions .header .name .label {
    bottom: -2rem;
    font-size: 0.9rem;
    left: 0;
    width: 100%;
}

#reactions .header .name .count,
#reactions .header .name .label {
    font-weight: 600;
    position: absolute;
    text-align: center;
    text-transform: capitalize;
}

#reactions .header .name .count {
    font-size: 0.8rem;
    right: 0;
    top: -1.5rem;
}

#reactions .content {
    border-radius: 0 0 1rem 1rem !important;
}

#reactions .content .wrapper {
    height: 350px;
    overflow-y: auto;
}

#reactions .content .users {
    display: none;
    flex-wrap: wrap;
}

#reactions .content .users.active {
    display: flex;
}

#reactions .content .users .user {
    align-items: center;
    display: flex;
    overflow: hidden;
    padding: 0.5rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 50%;
}

#reactions .content .users .user>.avatar {
    height: 30px;
    margin-right: 0.5rem;
    min-width: 30px;
    width: 30px;
}

#reactions .content .users .user img.avatar {
    height: 30px !important;
    width: 30px !important;
}

#reactions .content .users .user .text {
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
}

#screenshots {
    max-width: 1024px;
    width: -moz-fit-content;
    width: fit-content;
}

#screenshots img {
    max-height: 90vh;
}

#screenshots div.left,
#screenshots div.right {
    background: transparent;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    width: 40px;
}

#screenshots div.right {
    left: auto;
    right: 0;
}

#screenshots button {
    background: transparent;
    border-radius: 0;
    color: #000;
}

#folder {
    margin: auto;
    max-width: 1100px;
}

#folder .title {
    color: #3e3e3e;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    text-align: center;
}

#folder .card {
    border-radius: 1rem;
    box-shadow: 0 6px 20.1px 4.9px rgba(176, 191, 238, 0.12) !important;
    overflow: hidden;
}

#folder .card .content.name {
    background: #ffc864;
    cursor: default;
    font-size: 1.4rem;
    padding: 0.75rem;
}

#folder .card .content.name span {
    border-radius: 500px;
    color: #000;
    display: block;
    margin: auto;
    overflow: hidden;
    padding: 0.75rem 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#folder .card .content.link {
    color: #525252;
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
}

#folder .card .content.link:hover {
    background: linear-gradient(0deg, transparent, #fafafa);
}

#folder .card .content i {
    color: #656565;
}

#similar-items {
    background: linear-gradient(0deg, #fff, #fff, #fafafa);
    margin-top: 3rem !important;
    padding: 2rem;
}

#similar-items .header {
    margin-bottom: 1rem;
}

#similar-items .header div {
    color: #484848;
    display: table;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
    text-transform: uppercase;
}

#user-notifications .item {
    display: flex;
    margin: 0;
    position: relative;
}

#user-notifications .item:not(:last-child):after {
    background: #f7f7f7;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    visibility: visible;
    width: 100%;
}

#user-notifications .item .image {
    width: 40px !important;
}

#user-notifications .item .date {
    color: #949292;
}

#user-notifications .item .content {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#user-notifications .item strong {
    color: #4682b4;
}

#user-profile {
    background: #f8f8ff;
}

#user-profile .column {
    background: #fff;
}

#user-profile .secondary.menu {
    background: #f2f2f6;
}

#user-profile .header {
    background: #2196f3;
    border-radius: 0.25rem;
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    padding: 0.25rem 0.5rem;
}

#user-profile .ui.items .content {
    padding-top: 0.5rem;
}

#user-profile .ui.image,
#user-profile .ui.image img {
    cursor: pointer;
    width: 110px !important;
}

#user-profile table.password {
    display: none;
}

#user-profile .ui.menu .item.active {
    background: tomato;
    color: #fff;
    font-weight: 700;
}

#user-favorites {
    background: #fff;
    margin: 0 auto;
    max-width: 1100px;
    min-height: 80vh;
}

#user-favorites .column.title {
    align-items: center;
    border-bottom: 2px solid #f8f8f8;
    border-radius: 0 !important;
    display: flex;
    margin: -1rem;
    width: auto;
}

#user-favorites .column.title .header {
    background: #ffe252;
    border: 1px solid #eaeaea;
    border-radius: 500px;
    box-shadow: inset 0 0 0 5px #fff;
    font-size: 1.4rem;
    margin-top: 0.15rem;
    padding: 1rem 1.5rem;
}

#user-favorites .card {
    background: #fff;
    border: 1px solid #f3f3f3;
    border-radius: 1rem !important;
    box-shadow: 0 0 10px 2px rgba(176, 191, 238, 0.12) !important;
    overflow: hidden;
}

#user-favorites .card .content {
    align-items: center;
    display: flex;
    padding: 0.5rem !important;
}

#user-favorites .card .content:last-child {
    background: #fbfbff;
    font-size: 1.1rem;
    padding: 0.5rem 0.75rem !important;
}

#user-favorites .card .content .left {
    max-width: 100px;
    min-width: 100px;
    width: 100%;
}

#user-favorites .card .content .left a {
    background-position: bottom;
    background-size: cover;
    border-radius: 500px;
    display: block;
    height: 100px;
    overflow: hidden;
    width: 100px;
}

#user-favorites .card .content .right {
    padding-left: 1rem;
}

#user-favorites .card .content .right a {
    color: #4691d0;
}

#user-favorites .card .content .right span {
    display: block;
    font-size: 1.1rem;
    line-height: 1.5;
}

#user-favorites .card .content .category {
    margin-right: auto;
}

#user-directory {
    background: #fff;
    min-height: 400px;
}

#user-directory .items .header {
    font-size: 1rem;
}

#user-directory .card {
    border: 1px solid #efefef;
    width: calc(16.66667% - 1rem);
}

#user-directory .card:hover {
    border: none;
}

#user-directory .card .header {
    color: #5a5a5a;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
    white-space: nowrap;
}

#user-directory .card .content:first-child {
    background: #f6f6f6;
    font-weight: 700;
    padding: 1rem;
}

#user-directory .card .content:last-child {
    background: #0077bc;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    height: 47px;
    padding: 1rem;
}

#user-directory .card .content:last-child:hover {
    background: #005180;
}

#user-directory .ui.image {
    margin: 0;
    position: relative;
}

#user-directory .ui.image img {
    height: 40px;
    width: auto;
}

#user-directory .ui.image span {
    background: #00628e;
    border-radius: 0.2rem 0.2rem 0.2rem 0.5rem;
    color: #fff;
    font-size: 11px;
    padding: 0 0.5rem;
    position: absolute;
    right: 0.25rem;
    top: 0.25rem;
}

#user {
    margin: auto;
    max-width: 1100px;
}

#user .credits>.header .title {
    font-size: 2rem;
    line-height: 1.5;
    padding: 2rem;
    font-weight: 700;
    background: #435569;
    color: #fff;
}

#user .credits>.body {
    padding: 1rem 2rem 3rem;
}

#user .credits>.body .card {
    border-radius: 0.75rem;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 8%);
    overflow: hidden;
}

#user .credits>.body .card>.content {
    align-items: center;
    display: flex;
}

#user .credits>.body .card>.content img {
    height: 50px;
    min-height: 50px;
    min-width: 50px;
    width: 50px;
}

#user .credits>.body .card>.content .content {
    font-size: 1.1rem;
    font-weight: 600;
    padding-left: 1.5rem;
    text-align: center;
    text-transform: capitalize;
}

#user .credits>.body .card>.content .content .name {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1rem;
}

#user .credits>.body .card>.content .content .count {
    background: rgba(240, 248, 255, 0.28);
    border-radius: 0.75rem;
    color: #385e83;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 0.75rem 1rem 0.5rem;
}

#user .credits .affiliate-earnings {
    margin-top: 2.5rem !important;
}

#user .credits .affiliate-earnings>.header {
    background: #fbfdff;
    padding: 2rem;
}

#user .credits .affiliate-earnings>.header img {
    margin-right: 1.5rem;
}

#user .credits .affiliate-earnings>.header .title div {
    font-size: 1.3rem;
}

#user .credits .affiliate-earnings>.header .title div:first-child {
    font-weight: 600;
    margin-bottom: 1rem;
}

#user .credits .affiliate-earnings>.header .title div:last-child {
    color: #8c8c8c;
    font-weight: 500;
}

#user .credits .affiliate-earnings>.header .date {
    margin-left: auto;
}

#user .credits .affiliate-earnings>.header .date input {
    border-radius: 0.75rem;
    font-size: 1.1rem;
    height: 45px;
}

#user .credits .affiliate-earnings>.grid {
    height: 404px;
    min-height: 404px;
    overflow-y: visible;
}

#user .credits .affiliate-earnings>.grid .row {
    display: flex;
}

#user .credits .affiliate-earnings>.grid .row span {
    background: linear-gradient(-180deg, #ff8d5c, #ff6b6b);
    border-radius: 1rem 1rem 0 0;
    bottom: 0;
    content: "";
    height: 1px;
    max-height: 305px;
    position: absolute;
    right: 17%;
    width: 70%;
}

#user .credits .affiliate-earnings>.grid .row span i {
    display: none;
    font-size: 1rem;
    left: -3px;
    line-height: 1;
    position: absolute;
}

#user .credits .affiliate-earnings>.grid .row:last-child div {
    align-items: flex-end;
    height: 40px;
    justify-content: center;
}

#user .credits .affiliate-earnings>.grid .row div {
    align-items: flex-end;
    display: flex;
    flex: 1;
    height: 30px;
    justify-content: flex-end;
    line-height: 1 !important;
    position: relative;
    text-align: right;
}

#user .credits .affiliate-earnings>.grid .row div:after {
    border-right: 2px dashed #e8e8e8;
    bottom: 0;
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    width: 1px;
}

#user .credits .affiliate-earnings>.grid .row div:first-child {
    justify-content: flex-end;
    min-width: 45px;
    padding-right: 1rem;
}

#user .credits .affiliate-earnings>.grid .row:not(:last-child) div:not(:first-child):before {
    border-bottom: 2px dashed #e8e8e8;
    bottom: 0;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    width: 100%;
}

#user .credits .affiliate-earnings>.grid .wrapper {
    min-width: 100%;
    padding-right: 1rem;
}

#user .credits .orders {
    margin-top: 2.5rem !important;
}

#user .credits .orders>.header {
    background: #fbfdff;
    padding: 2rem;
}

#user .credits .orders>.header img {
    margin-right: 1.5rem;
}

#user .credits .orders>.header .title div {
    font-size: 1.3rem;
}

#user .credits .orders>.header .title div:first-child {
    font-weight: 600;
    margin-bottom: 1rem;
}

#user .credits .orders>.header .title div:last-child {
    color: #8c8c8c;
    font-weight: 500;
}

#user .credits .orders>.header .date {
    margin-left: auto;
}

#user .credits .orders>.header .date input {
    border-radius: 0.75rem;
    font-size: 1.1rem;
    height: 45px;
}

#user .credits .orders .body {
    display: block;
}

#user .credits .orders .body thead th {
    background: #fff;
    color: #293f55;
    font-weight: 600;
    text-align: center;
}

#user .credits .orders .body tfoot th {
    background: #fff;
}

#user .credits .orders .body td.items .item:not(:last-child) {
    border-bottom: 2px dashed #ebebeb;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
}

#user .credits .orders .body tbody td {
    background: rgba(225, 190, 255, 0.03);
}

#user .credits .orders .body .table {
    border: none;
}

#user .credits .orders .body .label {
    border-radius: 0.75rem !important;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
}

#user .credits .ui.pagination.menu {
    margin: 0 !important;
}

#auth .ui.message {
    border-radius: 1rem;
    font-weight: 700;
    line-height: 1.5;
}

#user .favorites,
#user .notifications,
#user .wrapper {
    min-height: 60vh;
}

#user .action.input input {
    border-radius: 100px 0 0 100px;
}

#user .action.input .button {
    border-radius: 0 100px 100px 0;
}

#user>.column {
    width: 100%;
}

#user>.column.title {
    background: #6a6dff;
    display: flex;
    overflow: auto;
}

#user .ui.menu:not(.pagination) {
    align-items: center;
    margin-left: auto;
}

#user .ui.menu:not(.pagination) .item {
    background: rgba(0, 0, 0, 0.07);
    border-radius: 0.75rem;
    color: #fff;
    flex: 1;
    font-size: 1.2rem;
    font-weight: 600;
    justify-content: center;
}

#user .ui.menu:not(.pagination) .item.active,
#user .ui.menu:not(.pagination) .item:not(.active):hover {
    background: #4a48c6;
    color: #fff;
}

#user>.items {
    border-radius: 2rem;
    box-shadow: 0 0 74px 0 rgba(115, 131, 169, 0.08) !important;
    display: flex;
    flex-direction: column;
    overflow-x: auto;
    padding: 0 !important;
}

#user>.items.profile {
    padding: 2rem !important;
}

#user>.items .items-list {
    display: table;
    width: 100%;
}

#user .purchases .titles {
    align-items: center;
    background: #6a5acd;
    border-radius: 1rem 1rem 0 0;
    display: flex;
}

#user .purchases .titles * {
    color: #fff;
}

#user .purchases .titles>div {
    flex: 1;
    font-size: 1.3rem;
    padding: 1rem;
    text-align: center;
}

#user .purchases .titles>div.name {
    flex: 2;
}

#user .purchases tbody .parent td:not(.link),
#user .purchases thead th:not(.link) {
    text-align: center;
}

#user .purchases tr.parent {
    font-weight: 500;
}

#user .purchases tr.parent .status div {
    border: 1px solid #0080af;
    border-radius: 0.75rem;
    color: #0080af;
    display: table;
    font-family: system-ui;
    font-size: 1rem;
    font-weight: 500;
    margin: auto;
    min-width: 80px;
    padding: 0.25rem 0.75rem;
    text-align: center;
}

#user .purchases tr.parent .links {
    text-align: center;
}

#user .purchases tr.parent .links a {
    display: flex;
    justify-content: center;
}

#user .purchases tr.parent .links img {
    height: 30px;
    width: 30px;
}

#user .purchases .products {
    display: none;
}

#user .purchases .products.active {
    display: table-row;
}

#user .purchases .products tr td {
    background: #fff;
}

#user .purchases .products tr td:last-child {
    border-right: 1px solid rgba(34, 36, 38, 0.1);
}

#user .purchases .products .button {
    background: #ff6b6b;
    border-radius: 0.5rem;
    color: #fff;
    font-family: system-ui;
    font-size: 1.1rem;
    font-weight: 500;
}

#user .purchases .products .button:hover {
    background: #f05252;
}

#user .purchases .products .button .menu {
    border-radius: 0.75rem;
    box-shadow: none;
    margin-top: 0.25rem;
}

#user .purchases .products .button .item {
    font-size: 1.1rem;
    font-weight: 600;
}

#user .favorites>.cards {
    margin: 0 !important;
    padding: 1.5rem !important;
}

#user .favorites .card {
    border-radius: 0.5rem;
    box-shadow: inset 0 0 20px 10px rgba(0, 0, 0, 0.04);
}

#user .favorites .content {
    border: none;
    text-align: center;
}

#user .favorites .content img {
    border-radius: 0.75rem;
}

#user .favorites .content.body {
    font-weight: 600;
}

#user .favorites .content.footer a {
    background: #fff;
    border: 1px solid #404040;
    border-radius: 1rem;
    color: #000;
}

#user .notifications {
    display: block;
    padding: 1rem;
}

#user .notifications .items {
    width: 100%;
}

#user .notifications .items .item {
    align-items: center;
    border-left: 3px solid #ff5f5f;
    border-radius: 1rem;
    display: flex;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
    padding: 0.5rem;
}

#user .notifications .items .item time {
    color: #979797;
}

#user .notifications .items .item p {
    font-size: 1.2rem;
}

#user .notifications .items .item.unread {
    font-weight: 600;
}

#user .notifications .items .item .image {
    background-position: bottom;
    background-size: cover;
    border-radius: 500px;
    height: 80px;
    width: 80px;
}

#user .profile .items .item {
    align-items: center;
}

#user .profile .items .item .content>div {
    text-transform: capitalize;
}

#user .profile .items .item .content>div.name {
    border-bottom: 2px dashed #ff2c53;
    color: #ff2c53;
    display: table;
    font-size: 1.3rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
}

#user .profile .items .item .content>div:not(:last-child) {
    margin-bottom: 0.75rem;
}

#user .profile .items .item .content>div.email sup {
    color: teal;
    font-weight: 700;
}

#user .profile .items .item .content>div.email sup:not(.verified) {
    color: #d64242;
}

#user .profile .items .ui.image {
    display: block;
    height: 100px;
    width: 100px;
}

#user .profile input {
    border-radius: 100px !important;
}

#user .profile .field .content:first-child {
    flex: none;
    margin-right: 2rem;
}

#user .profile .field.avatar {
    border-bottom: 1px solid #dbdbdb;
    margin: -1rem -1rem 1rem;
    padding: 1.5rem;
}

#user .profile .segment {
    border-radius: 2rem !important;
    font-size: 1.1rem;
}

#user .profile .segment .header {
    display: table;
    font-size: 1.2rem;
    padding-bottom: 0.5rem;
}

#user .profile .segment input {
    border-radius: 0.5rem;
}

#user .subscriptions .wrapper {
    display: table;
    width: 100%;
}

#user .subscriptions .item {
    display: flex;
    font-size: 1.1rem;
    text-align: center;
}

#user .subscriptions .item>div {
    align-items: center;
    display: flex;
    flex: 1;
    justify-content: center;
    padding: 1rem;
}

#user .subscriptions .item.titles {
    background: #efefef;
    border-radius: 1rem 1rem 0 0;
}

#user .subscriptions .item.titles div {
    align-items: center;
    color: #000;
    display: flex;
    font-size: 1.2rem;
    justify-content: center;
}

#user .subscriptions .item:not(.titles):not(:last-child) {
    border-bottom: 1px solid #f6f6f6;
}

#user .invoices {
    padding: 2rem;
}

#user .invoices table {
    border-radius: 1rem;
    overflow: hidden;
}

#user .invoices thead th {
    background: #efefef;
    color: #000;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1.5rem !important;
}

#user .invoices td:last-child,
#user .invoices th:last-child {
    text-align: right;
}

#user .ui.message {
    box-shadow: none;
    display: table !important;
    padding: 1rem;
}

#user .ui.pagination {
    background: #fff !important;
    flex: none !important;
    margin: 1rem !important;
    overflow: hidden !important;
    padding: 0 !important;
}

#user .ui.pagination * {
    color: #000 !important;
}

#user .ui.pagination .item.active {
    background-color: #ededed !important;
}

#user .ui.pagination .item.disabled * {
    color: #ededed !important;
}

#item-r-side-toggler a {
    background: linear-gradient(45deg, tomato, tomato, #ff826c);
    color: #fff;
    font-weight: 600;
    justify-content: center;
    width: 70px;
}

#prepaid-credits {
    margin-top: -1rem;
    width: 100%;
}

#prepaid-credits>.header {
    background: linear-gradient(45deg, #f3f3f3, #fff, #f3f3f3);
    padding: 2rem 0;
}

#prepaid-credits>.header .title {
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(45deg, #4f4f4f 50%, #6f65ff 0);
    -webkit-background-clip: text;
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.5;
    margin: auto;
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
}

#prepaid-credits>.body {
    display: flex;
    margin: auto;
    max-width: 1200px;
    padding: 2rem 0;
}

#prepaid-credits>.body>div {
    flex: 1;
    padding: 2rem;
}

#prepaid-credits>.body>div .packs .card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

#prepaid-credits>.body>div .packs .card>.header {
    padding: 2rem;
    text-align: center;
}

#prepaid-credits>.body>div .packs .card>.header .name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

#prepaid-credits>.body>div .packs .card>.header .price {
    font-size: 1.5rem;
    font-weight: 600;
}

#prepaid-credits>.body>div .packs .card>.header .tag {
    background: #ffff52;
    border-radius: 0 0 0 1rem;
    color: #000;
    font-family: system-ui;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    position: absolute;
    right: 0;
    top: 0;
}

#prepaid-credits>.body>div .packs .card>.body {
    border: none;
    height: 100%;
    padding: 2rem;
}

#prepaid-credits>.body>div .packs .card>.footer {
    border: none;
    padding: 0 2rem 2rem;
    text-align: center;
}

#prepaid-credits>.body>div .packs .card>.footer .button {
    background: #6f65ff !important;
    border: none !important;
    border-radius: 100px;
    box-shadow: none;
    color: #fff !important;
    font-weight: 600;
    min-width: 120px;
    padding: 1rem;
    width: 100%;
}

#prepaid-credits>.body>div .packs .card.active .button {
    background: #fff !important;
    box-shadow: 0 0 0 2px #6f65ff;
    color: #6f65ff !important;
}

#prepaid-credits>.body>div.right-side {
    max-width: 360px;
    position: relative;
    width: 100%;
}

#prepaid-credits>.body>div.right-side .methods {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
}

#prepaid-credits>.body>div.right-side .methods>.header {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

#prepaid-credits>.body>div.right-side .methods .ui.dropdown {
    border-radius: 0.75rem !important;
    box-shadow: none;
}

#prepaid-credits>.body>div.right-side .methods .ui.dropdown .text {
    align-items: center;
    display: flex;
}

#prepaid-credits>.body>div.right-side .methods .ui.dropdown .text img {
    border-radius: 100px;
    height: 100%;
    max-height: 34px;
    max-width: 34px;
    width: 100%;
}

#prepaid-credits>.body>div.right-side .methods .ui.dropdown .menu {
    background: #fff;
    border: none;
    border-radius: 0.75rem;
    box-shadow: none;
    margin-bottom: 1rem;
    margin-top: 1rem;
    max-height: 300px;
    overflow: hidden;
}

#prepaid-credits>.body>div.right-side .methods .ui.dropdown .menu::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}

#prepaid-credits>.body>div.right-side .methods .ui.dropdown .menu::-webkit-scrollbar-track {
    background: #eaeaea;
}

#prepaid-credits>.body>div.right-side .methods .ui.dropdown .menu::-webkit-scrollbar-thumb {
    background: #b061ff;
}

#prepaid-credits>.body>div.right-side .methods .ui.dropdown .menu::-webkit-scrollbar-thumb:hover {
    background: #582a86;
}

#prepaid-credits>.body>div.right-side .methods .ui.dropdown .menu:hover {
    overflow: auto;
}

#prepaid-credits>.body>div.right-side .methods .ui.dropdown .item {
    align-items: center;
    display: flex;
    padding: 1.5rem 1.5rem 1rem !important;
}

#prepaid-credits>.body>div.right-side .methods .ui.dropdown .item:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

#prepaid-credits>.body>div.right-side .methods .ui.dropdown .item.active,
#prepaid-credits>.body>div.right-side .methods .ui.dropdown .item.selected,
#prepaid-credits>.body>div.right-side .methods .ui.dropdown .item:hover {
    background: #fff;
    font-weight: 600;
}

#prepaid-credits>.body>div.right-side .methods .ui.dropdown .item .content {
    min-width: 0;
}

#prepaid-credits>.body>div.right-side .methods .ui.dropdown .item img {
    border-radius: 100px;
    height: 50px;
    margin-right: 1rem;
    min-height: 50px;
    min-width: 50px;
    width: 50px;
}

#prepaid-credits>.body>div.right-side .methods .ui.dropdown .item .name {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1;
    text-transform: capitalize;
}

#prepaid-credits>.body>div.right-side .methods .ui.dropdown .item .description {
    line-height: 1.5;
    margin-top: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#prepaid-credits>.body>div.right-side .checkout {
    margin-top: 2rem;
    position: relative;
}

#prepaid-credits>.body>div.right-side .checkout .terms {
    margin-bottom: 1rem;
}

#prepaid-credits>.body>div.right-side .checkout .terms a {
    font-weight: 600;
}

#prepaid-credits>.body>div.right-side .checkout .terms label {
    color: #000;
}

#prepaid-credits>.body>div.right-side .checkout .button {
    align-items: center;
    background: #ffe73e;
    border-radius: 0.75rem;
    color: #000;
    display: flex;
    font-size: 1.2rem;
    font-weight: 600;
    justify-content: center;
    padding: 1.5rem 1.5rem 1rem;
    text-transform: uppercase;
}

#prepaid-credits>.body>div.right-side .checkout .button:hover {
    font-weight: 700;
}

#credits-checkout-form {
    border-radius: 0.75rem;
    overflow: hidden;
}

#credits-checkout-form>.header {
    align-items: center;
    background: #ff666c;
    color: #fff;
    display: flex;
    font-size: 1.8rem;
    font-weight: 600;
    height: 70px;
    line-height: 1.5;
}

#credits-checkout-form>.actions {
    background: #f0f8ff;
}

#credits-checkout-form>div {
    border: none;
}

#credits-checkout-form tr.discount * {
    color: #00ae7b;
    font-weight: 600;
}

#credits-checkout-form tr.total * {
    background: #fff;
    font-weight: 600;
}

#credits-checkout-form thead * {
    background: #f0f8ff;
    border: none;
}

#credits-checkout-form tfoot * {
    background: #fff;
    font-weight: 600;
}

#checkout-page {
    background: linear-gradient(180deg, hsla(0, 0%, 94%, 0.71), transparent);
    margin-top: -1rem;
    min-height: 400px;
    width: 100%;
}

#checkout-page>.header {
    background: #fff;
    position: relative;
    z-index: 1;
}

#checkout-page>.header:before {
    background: radial-gradient(#efefef, transparent);
    border-radius: 500%;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

#checkout-page>.header .content {
    font-size: 1.8rem;
    font-weight: 700;
    margin: auto;
    max-width: 1200px;
    padding: 3rem 2rem;
}

#checkout-page>.header .content .subheader {
    color: #4a4a4a;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

#checkout-page>.container {
    display: flex;
    margin: auto;
    max-width: 1200px;
    min-height: 600px;
    padding: 2rem;
}

#checkout-page>.container>div {
    background: #fff;
    border-radius: 1rem;
    flex: 1;
    padding: 2rem;
}

#checkout-page>.container .left-side {
    margin-right: 2rem;
}

#checkout-page>.container .left-side>.header {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

#checkout-page>.container .left-side>.header .subheader {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

#checkout-page>.container .left-side .items {
    display: flex;
    flex-wrap: wrap;
    margin: -0.5rem;
}

#checkout-page>.container .left-side .item.product {
    background: #f5f5f5;
    border-radius: 0.75rem;
    display: flex;
    margin: 0.75rem;
    overflow: hidden;
    padding: 1rem;
    position: relative;
    width: calc(50% - 1.5rem);
}

#checkout-page>.container .left-side .item.product .image {
    background-position: 50%;
    background-size: cover;
    border-radius: 0.75rem;
    display: flex;
    height: 120px;
    margin-right: 1rem;
    width: 120px;
}

#checkout-page>.container .left-side .item.product .content {
    display: flex;
    flex: 1;
    flex-direction: column;
    font-size: 1.1rem;
    padding-top: 0.5rem;
}

#checkout-page>.container .left-side .item.product .content :not(:last-child) {
    margin-bottom: 0.5rem;
}

#checkout-page>.container .left-side .item.product .content .name {
    font-weight: 500;
}

#checkout-page>.container .left-side .item.product .content .close {
    align-items: center;
    background: #fff741;
    border-radius: 2rem 0 0 0;
    bottom: 0;
    color: #2f2f2f;
    display: flex;
    font-size: 1.2rem;
    font-weight: 400;
    height: 45px;
    justify-content: center;
    padding: 1rem;
    position: absolute;
    right: 0;
    width: 45px;
}

#checkout-page>.container .left-side .item.product .content .license {
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(35deg, #ff6135, #009e7a 46%);
    -webkit-background-clip: text;
    font-weight: 500;
    margin: 0.5rem 0;
    text-transform: capitalize;
}

#checkout-page>.container .left-side .item.product .content .price {
    font-weight: 500;
    font-weight: 600;
    margin-top: 0.5rem;
}

#checkout-page>.container .left-side .item.subscription {
    background: #f7f7f7;
    border-radius: 1rem;
    max-width: 320px;
    overflow: hidden;
    width: 100%;
}

#checkout-page>.container .left-side .item.subscription .header {
    background: #ffda80;
    border-radius: 0.75rem 0.75rem 0 0;
    color: #000;
    display: flex;
    flex-wrap: wrap;
    font-size: 1.3rem;
    font-weight: 600;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    text-transform: uppercase;
}

#checkout-page>.container .left-side .item.subscription .description {
    border-radius: 0 0 0.75rem 0.75rem;
    padding: 2rem;
}

#checkout-page>.container .left-side .item.subscription .description>div {
    align-items: center;
    color: #000;
    display: flex;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    text-transform: capitalize;
}

#checkout-page>.container .left-side .item.subscription .description>div:not(:last-child) {
    margin-bottom: 0.75rem;
}

#checkout-page>.container .left-side .item.subscription .description>div img {
    margin-right: 0.5rem;
    position: relative;
    top: -3px;
    width: 25px;
}

#checkout-page>.container .left-side .item.subscription .description .item {
    align-items: center;
    border-radius: 0.75rem;
    display: flex;
    font-size: 1.1rem;
    font-weight: 500;
}

#checkout-page>.container .left-side .item.subscription .description .item:not(:last-child) {
    margin-bottom: 0.75rem;
}

#checkout-page>.container .left-side .item.subscription .description .item .icon {
    background: #ff7272;
    border-radius: 500px;
    display: flex;
    height: 30px;
    margin-right: 1rem;
    padding: 0.5rem;
    width: 30px;
}

#checkout-page>.container .left-side .item.subscription .description .item .icon img {
    top: 0;
    width: 100%;
}

#checkout-page>.container .left-side .item.subscription .description .item .icon:not(.included) {
    background: #ededed;
    height: 29px;
    padding: 0.6rem;
    width: 29px;
}

#checkout-page>.container .left-side .item.subscription .description .item .icon:not(.included) img {
    display: none;
}

#checkout-page>.container .left-side .item.subscription .description .item .icon.included img {
    filter: invert(1);
}

#checkout-page>.container .right-side {
    background: #fff;
    border-radius: 1rem;
    max-width: 380px;
    position: relative;
    width: 100%;
}

#checkout-page>.container .right-side .summary {
    color: #000;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 3rem;
}

#checkout-page>.container .right-side .summary>.header {
    color: #000;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

#checkout-page>.container .right-side .summary>.content {
    background: #fff;
    margin: 0 -2rem;
    padding: 1.5rem 2rem;
    position: relative;
}

#checkout-page>.container .right-side .summary>.content>div {
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.75rem 0;
}

#checkout-page>.container .right-side .summary>.content>div:first-child {
    padding-top: 0;
}

#checkout-page>.container .right-side .summary>.content>div:last-child {
    padding-bottom: 0;
}

#checkout-page>.container .right-side .summary>.content>div.total {
    color: #ff662d;
    font-weight: 600;
}

#checkout-page>.container .right-side .methods {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
}

#checkout-page>.container .right-side .methods>.header {
    color: #000;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

#checkout-page>.container .right-side .methods .ui.dropdown {
    border-radius: 0.75rem !important;
    box-shadow: none;
}

#checkout-page>.container .right-side .methods .ui.dropdown .text {
    align-items: center;
    display: flex;
}

#checkout-page>.container .right-side .methods .ui.dropdown .text img {
    border-radius: 100px;
    height: 100%;
    max-height: 34px;
    max-width: 34px;
    width: 100%;
}

#checkout-page>.container .right-side .methods .ui.dropdown .menu {
    background: #fff;
    border: none;
    border-radius: 0.75rem;
    box-shadow: none;
    margin-bottom: 1rem;
    margin-top: 1rem;
    max-height: 300px;
    overflow: hidden;
}

#checkout-page>.container .right-side .methods .ui.dropdown .menu::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}

#checkout-page>.container .right-side .methods .ui.dropdown .menu::-webkit-scrollbar-track {
    background: #eaeaea;
}

#checkout-page>.container .right-side .methods .ui.dropdown .menu::-webkit-scrollbar-thumb {
    background: #b061ff;
}

#checkout-page>.container .right-side .methods .ui.dropdown .menu::-webkit-scrollbar-thumb:hover {
    background: #582a86;
}

#checkout-page>.container .right-side .methods .ui.dropdown .menu:hover {
    overflow: auto;
}

#checkout-page>.container .right-side .methods .ui.dropdown .item {
    align-items: center;
    display: flex;
    padding: 1.5rem 1.5rem 1rem !important;
}

#checkout-page>.container .right-side .methods .ui.dropdown .item:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

#checkout-page>.container .right-side .methods .ui.dropdown .item.active,
#checkout-page>.container .right-side .methods .ui.dropdown .item.selected,
#checkout-page>.container .right-side .methods .ui.dropdown .item:hover {
    background: #fff;
    font-weight: 600;
}

#checkout-page>.container .right-side .methods .ui.dropdown .item .content {
    min-width: 0;
}

#checkout-page>.container .right-side .methods .ui.dropdown .item img {
    border-radius: 100px;
    height: 50px;
    margin-right: 1rem;
    min-height: 50px;
    min-width: 50px;
    width: 50px;
}

#checkout-page>.container .right-side .methods .ui.dropdown .item .name {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1;
    text-transform: capitalize;
}

#checkout-page>.container .right-side .methods .ui.dropdown .item .description {
    line-height: 1.5;
    margin-top: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#checkout-page>.container .right-side .coupon {
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
}

#checkout-page>.container .right-side .coupon .message {
    background: #fff;
    border-radius: 0.75rem;
    color: #000;
    font-weight: 500;
    margin-top: 1rem;
    padding: 1rem;
}

#checkout-page>.container .right-side .coupon .message.negative {
    background: #ff7878;
    color: #fff;
}

#checkout-page>.container .right-side .coupon .message.positive {
    background: #00af84;
    color: #fff;
}

#checkout-page>.container .right-side .coupon>.header {
    color: #000;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

#checkout-page>.container .right-side .coupon .button {
    background: #fff;
    border: 1px solid rgba(34, 36, 38, 0.15);
    border-radius: 0 0.75rem 0.75rem 0;
    color: #000;
    font-weight: 600;
}

#checkout-page>.container .right-side .coupon .button:hover {
    font-weight: 700;
}

#checkout-page>.container .right-side .coupon input {
    border-radius: 0.75rem 0 0 0.75rem;
}

#checkout-page>.container .right-side .checkout {
    margin-top: 2rem;
    position: relative;
}

#checkout-page>.container .right-side .checkout .terms {
    margin-bottom: 1rem;
}

#checkout-page>.container .right-side .checkout .terms a {
    font-weight: 600;
}

#checkout-page>.container .right-side .checkout .button {
    align-items: center;
    background: #556371;
    border-radius: 0.75rem;
    color: #fff;
    display: flex;
    font-size: 1.2rem;
    font-weight: 600;
    justify-content: center;
    padding: 1.5rem 1.5rem 1rem;
    text-transform: uppercase;
}

#checkout-page>.container .right-side .checkout .button:hover {
    font-weight: 700;
}

#checkout-page>.container .right-side .waving.btn {
    border-radius: 1rem;
}

#checkout-page>.container .right-side .waving.btn span.text {
    color: #000;
}

#checkout-page>.container .right-side .waving.btn span.liquid {
    background: #ffc946;
}

#form-checkout {
    position: relative;
}

#form-checkout label {
    color: #000;
    margin-left: 1rem;
}

#form-checkout input {
    border-radius: 0.75rem;
}

#form-checkout .form-fields {
    flex-wrap: wrap;
    margin: 0 -0.5rem;
}

#form-checkout .form-fields:empty {
    display: none;
}

#form-checkout .form-fields .field {
    margin-bottom: 1rem;
}

#form-checkout .form-fields .field.fluid {
    width: 100%;
}

#form-checkout .form-fields .field.custom_amount {
    background: #fff;
    margin: 0 -1.5rem 2rem;
    padding: 2rem;
    width: calc(100% + 3rem);
}

#form-checkout .form-fields .field.custom_amount label {
    color: #000;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-left: 0;
}

#form-checkout .form-fields .field.custom_amount input {
    border: 1px solid rgba(34, 36, 38, 0.15);
}

#form-checkout .form-fields .guest-email {
    flex: 1 !important;
    margin-bottom: 2rem;
    min-width: 100%;
}

#form-checkout .form-fields .guest-email input {
    background: #fff;
}

#form-checkout .form-fields .notes {
    flex: 1 !important;
    margin-bottom: 2rem !important;
    min-width: 100%;
}

#form-checkout .form-fields .notes label {
    color: #000;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-left: 0;
}

#form-checkout .form-fields .notes textarea {
    border-radius: 0.75rem !important;
    color: #000;
}

#checkout-response {
    align-items: center;
    background: radial-gradient(#fff, hsla(0, 0%, 94%, 0.71), #fff);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -1rem;
    min-height: 100vh;
    padding: 0 0 2rem;
    width: 100%;
}

#checkout-response>.heading {
    background: #fff;
    line-height: 1.5;
    margin: 0 -2rem 2rem;
    padding: 2rem;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 9;
}

#checkout-response>.heading .title {
    color: #2d2d2d;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

#checkout-response>.heading .subheading {
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(56deg, #0058ff, #7043a1 90%),
        -webkit-linear-gradient(56deg, #0058ff, #7043a1 90%);
    -webkit-background-clip: text;
    color: #272727;
    font-size: 1.8rem;
    font-weight: 600;
}

#checkout-response .columns {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 900px;
    padding: 0 2rem;
    width: 100%;
}

#checkout-response .columns>div {
    background: #fff;
    border-radius: 1rem;
    flex: 1;
    font-size: 1.1rem;
    max-width: 400px;
    overflow: hidden;
    padding: 2rem;
}

#checkout-response .columns>div.left {
    margin-right: 2rem;
}

#checkout-response .columns>div.left .note {
    background: radial-gradient(#723896, #663896, #865cb9);
    border-radius: 0;
    color: #fff;
    font-size: 1rem;
    line-height: 1.5;
    margin: 1rem -2rem;
    padding: 1.5rem 2rem;
}

#checkout-response .columns>div.left .note span {
    color: #ffba2e;
    font-weight: 600;
}

#checkout-response .columns>div.right>.heading {
    border-left: 0.25rem solid #ffcc75;
}

#checkout-response .columns>div.right .note {
    background: #f5f5f5;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem -2rem 0;
    padding: 1.5rem 2rem;
    text-align: center;
}

#checkout-response .columns>div.right .note span {
    color: #ff6d3d;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: lowercase;
}

#checkout-response .columns>div>.heading {
    background: #f4f4f4;
    border-left: 0.25rem solid #9675ff;
    border-radius: 0.75rem;
    border-radius: 0 0.75rem 0.75rem 0;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
}

#checkout-response .columns>div .items .item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

#checkout-response .columns>div .items .item .name {
    margin-right: auto;
    max-width: 300px;
}

#checkout-response .columns>div .items .item:not(:last-child) {
    border-bottom: 2px dotted #c4c4c4;
}

#checkout-response .columns>div .items .item.minus {
    color: #00baff;
    font-weight: 600;
}

#checkout-response .columns>div .items .item.total {
    color: #ff9250;
    font-size: 1.2rem;
    font-weight: 600;
}

#checkout-response .columns>div .items .item .text {
    font-weight: 600;
    margin-left: 1rem;
}

#checkout-response .columns>div .items .item .text .download {
    background: radial-gradient(#ffd944, #ffe3b6);
    border-radius: 0.5rem;
    color: #000;
    display: table;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
}

#checkout-response .columns>div .items .item .text .download:hover {
    background: #ffdc55;
}

#checkout-response .columns>div .items .item .text.list {
    position: relative;
}

#checkout-response .columns>div .items .item .text.list:hover .menu {
    display: block;
}

#checkout-response .columns>div .items .item .text.list .download {
    cursor: pointer;
}

#checkout-response .columns>div .items .item .text.list .menu {
    background: #fff;
    border-radius: 0.5rem;
    display: none;
    left: 0;
    padding: 0.5rem 0;
    position: absolute;
    top: auto;
    z-index: 1;
}

#checkout-response .columns>div .items .item .text.list .menu .link {
    background: linear-gradient(315deg, #888, #7e7e7e);
    color: #fff;
    display: block;
    min-width: 100px;
    padding: 0.5rem 0.75rem;
}

#checkout-response .columns>div .items .item .text.list .menu .link:first-child {
    border-radius: 0.5rem 0.5rem 0 0;
}

#checkout-response .columns>div .items .item .text.list .menu .link:last-child {
    border-radius: 0 0 0.5rem 0.5rem;
}

#checkout-response .columns>div .items .item .text.list .menu .link:not(:last-child) {
    border-bottom: 1px solid #fff;
}

#checkout-response .columns>div .items .item .text.list .menu .link:hover {
    background: linear-gradient(315deg, #5e5e5e, #7e7e7e);
}

#checkout-response .buttons {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 1rem auto 0;
    max-width: 800px;
    width: 100%;
}

#checkout-response .buttons a {
    background: #fff;
    border-radius: 0.5rem;
    color: #000;
    display: block;
    flex: 1;
    font-family: system-ui;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
}

#checkout-response .buttons a.homepage {
    box-shadow: inset 4px 4px 0 0 #6c3e9c;
    color: #6c3e9c;
    margin-right: 2rem;
}

#checkout-response .buttons a.purchases {
    box-shadow: inset -4px -4px 0 0 #ff9600;
    color: #ff9600;
}

#checkout-response .buttons.guest .homepage {
    margin-right: 0;
}

#checkout-response:not(.product) .columns>.column.left {
    margin: 0 auto;
}

#checkout-response:not(.product) .columns>.column.right {
    display: none;
}

.dropdown-wrapper .ui.dropdown {
    flex: 1;
    max-width: 170px !important;
    min-width: 170px !important;
    text-overflow: ellipsis;
}

.dropdown-wrapper .ui.dropdown .text {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-wrapper .ui.button {
    flex: 1;
}

#support {
    background: #fff;
    margin-top: -1rem;
    width: 100%;
}

#support>.header {
    background: #f9f9f9;
    line-height: 1.5;
    padding: 3rem 2rem;
}

#support>.header>div {
    margin: auto;
    max-width: 1100px;
    text-align: center;
}

#support>.header .heading {
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(227deg, #ff60f1 30%, #03bdf4 70%);
    -webkit-background-clip: text;
    font-size: 3rem;
    font-weight: 800;
}

#support>.header .subheading {
    color: #585858;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 1rem;
    max-width: 500px;
    text-transform: capitalize;
}

#support>.body {
    padding: 2rem;
}

#support>.body .segments {
    box-shadow: none;
}

#support>.body .container {
    align-items: flex-start;
    display: flex;
    margin: auto;
    max-width: 1100px;
}

#support>.body .container>div {
    flex: 1;
    padding: 2rem;
}

#support>.body .container>div.right-side {
    background: #f9f9f9;
    border-radius: 1rem;
    max-width: 370px;
    padding: 2rem;
}

#support>.body .container>div.right-side .ui.message {
    background: #00d0d2;
    border-radius: 0.75rem;
    box-shadow: none;
    color: #fff;
    font-weight: 600;
    padding: 1rem 1.5rem;
}

#support>.body .container>div.right-side .title {
    background: #fff;
    border-radius: 100px;
    padding: 1rem;
    text-align: center;
}

#support>.body .container>div.right-side .form input,
#support>.body .container>div.right-side .form textarea {
    border-radius: 0.75rem;
}

#support>.body .container>div.right-side .form button {
    background: #8c58e7;
    border-radius: 0.5rem;
    color: #fff;
    margin-right: 0;
    min-width: 150px;
}

#support>.body .container>div.left-side {
    padding-right: 4rem;
}

#support>.body .container>div.left-side .segment {
    background: #f9f9f9;
    border-left: 0.35rem solid #7a7bff !important;
    border-radius: 0 0.75rem 0.75rem 0;
}

#support>.body .container>div.left-side .segment:not(:last-child) {
    margin-bottom: 1rem;
}

#support>.body .container>div.left-side .segment p {
    margin-bottom: 0;
}

#support>.body .container>div.left-side .segment p i {
    margin-right: 0.5rem;
}

#support>.body .container>div.left-side .segment>div {
    display: none;
}

#support>.body .container>div.left-side .segment.active {
    padding: 2rem;
}

#support>.body .container>div.left-side .segment.active:not(:last-child) {
    margin-bottom: 1.5rem;
}

#support>.body .container>div.left-side .segment.active>div {
    display: block;
}

#support>.body .container>div.left-side .segment.active>div * {
    font-family: valexa !important;
}

#support>.body .container>div.left-side .segment.active>p {
    font-weight: 600;
    margin-bottom: 1rem;
}

#support>.body .container .title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 2rem;
}

#blog {
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
    padding: 1rem;
    width: 100%;
}

#blog .ui.menu:not(.pagination) {
    align-items: center;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 6px 20.1px 4.9px rgba(176, 191, 238, 0.12);
    flex-wrap: wrap;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    margin-left: 0;
    margin-right: 0;
    padding: 1rem;
}

#blog .ui.menu:not(.pagination) .right.menu {
    flex: 1;
}

#blog .ui.menu:not(.pagination) .item.header {
    color: #697582;
    font-size: 1.3rem;
    font-weight: 400;
    margin-left: 0;
}

#blog .ui.menu:not(.pagination) .item.header span {
    background: #017ad2;
    border-radius: 100px;
    color: #fff;
    margin: -0.5rem 0 -0.5rem 0.5rem;
    padding: 0.5rem 1rem;
}

#blog .ui.menu:not(.pagination) .item.header span * {
    color: #fff;
}

#blog .ui.menu:not(.pagination) .item.ui.dropdown {
    border: 1px solid #d2d2d2;
    border-radius: 100px;
    height: 45px;
    width: 45px;
}

#blog .ui.menu:not(.pagination) .item.ui.dropdown .menu {
    border-radius: 1rem;
    overflow: hidden;
}

#blog .ui.menu:not(.pagination) .item.search {
    flex: 1;
    padding-right: 0;
}

#blog .ui.menu:not(.pagination) .item.search input {
    height: 45px;
}

#blog .ui.menu.pagination {
    background: #f05757 !important;
    margin-top: 2rem;
}

#blog .ui.menu.pagination .item {
    color: #fff;
}

#blog .ui.menu.pagination .item.active {
    background-color: #a83939 !important;
}

#blog .posts .column {
    flex: 1;
    min-height: 80vh;
    padding: 0;
    text-align: center;
    z-index: 2;
}

#blog .posts .column .segment.filter {
    background: #f8f8ff;
    border: 0;
}

#blog .posts .column .segment.filter .label {
    text-transform: capitalize;
}

#blog .posts .column .segment.filter .label i.times {
    cursor: pointer;
}

#blog .posts .column .segment.filter .label i.times:hover {
    color: #000 !important;
}

#blog .posts .column .card {
    border-radius: 1rem !important;
    box-shadow: 0 6px 20.1px 4.9px rgba(176, 191, 238, 0.12) !important;
    overflow: hidden;
}

#blog .posts .column .card .content {
    position: relative;
}

#blog .posts .column .card:hover img {
    filter: brightness(0.9);
}

#blog .posts .column .card time {
    background: hsla(0, 0%, 100%, 0.74);
    border-radius: 100px;
    bottom: 0.5rem;
    color: #3d3d3d;
    display: block;
    font-size: 1rem;
    left: 0.5rem;
    line-height: 1;
    padding: 0.5rem 0.75rem 0.25rem;
    position: absolute;
    text-align: right;
}

#blog .posts .column .card .title {
    align-items: center;
    color: #292929;
    display: flex;
    font-weight: 700;
    height: 100%;
    justify-content: center;
    padding: 1rem !important;
    text-align: center;
}

#blog .posts .column .card .title a {
    font-size: 1.1rem;
    margin: auto;
    max-width: 250px;
}

#blog .posts .column .card .description {
    color: #414141;
    font-size: 1rem;
    padding: 1rem !important;
    text-align: center;
}

#blog .posts .column .card .tags {
    align-items: center;
    display: flex;
    justify-content: center;
}

#blog .posts .column .card .tags a {
    border: 1px solid #dedede;
    border-radius: 100px;
    color: #000;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
}

#blog .posts .column .card .tags a:not(:last-child) {
    margin-right: 0.5rem;
}

#blog .post .column.left {
    flex: 1;
    padding: 0;
}

#blog .post .column.left .post-cover {
    border-radius: 1rem 1rem 0 0;
    display: flex;
    overflow: hidden;
}

#blog .post .column.left .post-cover img {
    width: 100%;
}

#blog .post .column.left .post-title {
    background: #f8f8f8;
    border-radius: 0 0 1rem 1rem;
    padding: 1.5rem;
}

#blog .post .column.left .post-title>div:first-child {
    color: #000;
    font-size: 1.6rem;
    font-weight: 600;
}

#blog .post .column.left .post-title>div.extra {
    background: #fff;
    border-left: 0.25rem solid #9c3cff;
    border-radius: 0 0.5rem 0.5rem 0;
    display: table;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
}

#blog .post .column.left .post-content {
    margin-top: 2rem;
}

#blog .post .column.left .social-buttons {
    align-items: center;
    display: flex;
    font-size: 1.3rem;
}

#blog .post .column.left .social-buttons span {
    margin-left: auto;
    margin-right: 1rem;
}

#blog .post .column.left .social-buttons i {
    font-size: 1.3rem;
}

#blog .post .column.left .related-posts .card {
    border-radius: 1rem !important;
    box-shadow: 0 6px 20.1px 4.9px rgba(176, 191, 238, 0.12) !important;
    overflow: hidden;
}

#blog .post .column.left .related-posts .card .content {
    position: relative;
}

#blog .post .column.left .related-posts .card:hover img {
    filter: brightness(0.9);
}

#blog .post .column.left .related-posts .card time {
    background: hsla(0, 0%, 100%, 0.74);
    border-radius: 100px;
    bottom: 0.5rem;
    color: #3d3d3d;
    display: block;
    font-size: 1rem;
    left: 0.5rem;
    line-height: 1;
    padding: 0.5rem 0.75rem 0.25rem;
    position: absolute;
    text-align: right;
}

#blog .post .column.left .related-posts .card .title {
    align-items: center;
    color: #292929;
    display: flex;
    font-weight: 700;
    height: 100%;
    justify-content: center;
    padding: 1rem !important;
    text-align: center;
}

#blog .post .column.left .related-posts .card .title a {
    font-size: 1.1rem;
    margin: auto;
    max-width: 250px;
}

#blog .post .column.left .related-posts .card .tags {
    align-items: center;
    display: flex;
    justify-content: center;
}

#blog .post .column.left .related-posts .card .tags a {
    border: 1px solid #dedede;
    border-radius: 100px;
    color: #000;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
}

#blog .post .column.left .related-posts .card .tags a:not(:last-child) {
    margin-right: 0.5rem;
}

#blog .post .column.right {
    margin-left: 2rem;
    max-width: 350px;
    padding: 0 1rem;
    width: 100%;
}

#blog .post .column.right .items-wrapper {
    border-radius: 2rem !important;
    box-shadow: 0 6px 20.1px 4.9px rgba(176, 191, 238, 0.12) !important;
    font-size: 1.1rem;
    overflow: hidden;
    padding: 2rem;
}

#blog .post .column.right .items-wrapper .items-title {
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 1rem;
    padding: 0 0 1rem;
    position: relative;
}

#blog .post .column.right .items-wrapper .items-title:before {
    bottom: -2px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 20%;
}

#blog .post .column.right .items-wrapper.categories .items-title:before {
    background: #e14e4e;
}

#blog .post .column.right .items-wrapper.categories .item {
    color: #4d4d4d;
    display: block;
    font-size: 1.1rem;
    padding: 0.75rem 0;
}

#blog .post .column.right .items-wrapper.categories .item i {
    color: #0060a5;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

#blog .post .column.right .items-wrapper.latest-posts .items-title:before {
    background: #ff8f00;
    width: 30%;
}

#blog .post .column.right .items-wrapper.latest-posts .item {
    align-items: center;
    display: flex;
}

#blog .post .column.right .items-wrapper.latest-posts .item:not(:last-child) {
    margin-bottom: 1rem;
}

#blog .post .column.right .items-wrapper.latest-posts .item>a {
    background-position: 50%;
    background-size: cover;
    border-radius: 100px;
    height: 80px;
    max-width: 80px;
    min-width: 80px;
}

#blog .post .column.right .items-wrapper.latest-posts .item .content {
    margin-left: 1rem;
}

#blog .post .column.right .items-wrapper.latest-posts .item .content>a {
    font-size: 1.1rem;
}

#blog .post .column.right .items-wrapper.latest-posts .item .content p * {
    color: #6d6d6d;
    font-size: 0.9rem;
}

#blog .post .column.right .items-wrapper.tags .items-title:before {
    background: #e935f8;
    width: 40%;
}

#blog .post .column.right .items-wrapper.tags .items-list {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#blog .post .column.right .items-wrapper.tags .tag {
    border: 1px solid #dedede;
    border-radius: 100px;
    flex: 1;
    margin: 0.25rem;
    padding: 0.5rem;
    text-align: center;
    white-space: nowrap;
}

#pricing {
    background: #fff;
    margin: 1rem auto;
    max-width: 1200px;
    overflow: hidden;
    text-align: center;
}

#pricing .column.title {
    line-height: 2;
    padding: 1rem;
    text-align: center;
}

#pricing .column.title h1 {
    color: #0e76c4;
    font-size: 1.875rem;
    letter-spacing: 1.5px;
    margin-bottom: 0;
    font-family:'Valexa','Helvetica Neue',Arial,Helvetica,sans-serif  !important;
    font-weight: bold;
}

#pricing .column.title h3 {
    color: #6c6c6c !important;
    font-size: 1.4rem !important;
    font-weight: 500;
    line-height: 1.5 !important;
    margin: 1rem auto !important;
    max-width: 800px;
}

#pricing .cards {
    justify-content: center;
}

#pricing .card {
    background: transparent;
    box-shadow: none !important;
}

#pricing .card .contents {
    background: #fff;
    border-radius: 1.5rem !important;
    box-shadow: 0 6px 20.1px 4.9px rgba(176, 191, 238, 0.12) !important;
    height: 100%;
    margin-left: auto;
    min-height: 300px;
    padding-bottom: 100px;
    position: relative;
    width: calc(100% - 50px);
}

#pricing .card .content.description {
    padding: 1rem 2.5rem;
}

#pricing .card .content.description .item {
    align-items: center;
    border-radius: 0.75rem;
    display: flex;
    font-size: 1.1rem;
    font-weight: 500;
}

#pricing .card .content.description .item:not(:last-child) {
    margin-bottom: 0.75rem;
}

#pricing .card .content.description .item .icon {
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.09);
    border-radius: 500px;
    display: flex;
    height: 30px;
    margin-right: 1rem;
    padding: 0.5rem;
    width: 30px;
}

#pricing .card .content.description .item .icon img {
    width: 100%;
}

#pricing .card .content.description .item .icon:not(.included) {
    background: #ddd !important;
    height: 29px;
    padding: 0.6rem;
    width: 29px;
}

#pricing .card .content.description .item .icon:not(.included) img {
    display: none;
}

#pricing .card .content.price {
    color: #313434;
    font-size: 2.5rem !important;
    font-weight: 700;
    line-height: 1;
    padding: 3.5rem 1rem 2rem;
    text-align: center;
}

#pricing .card .content.price span {
    display: block;
    font-size: 1.1rem;
    margin-top: 0.75rem;
}

#pricing .card .content.buy {
    bottom: 0;
    padding: 1.5rem;
    position: absolute;
    text-align: center;
    width: 100%;
}

#pricing .card .content.buy a {
    border-radius: 1rem;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: auto;
    padding-bottom: 0.75rem;
    padding-top: 1rem;
}

#pricing .card .content.buy a:hover {
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.09);
}

#pricing .card .name {
    border-radius: 1rem 0 0 1rem;
    color: #fff;
    display: flex;
    padding: 1rem;
    position: absolute;
    right: 100%;
    text-align: center;
    top: 50px;
    width: 40px;
}

#pricing .card .name span {
    font-size: 1.2rem;
    font-weight: 600;
    right: -3px;
    text-transform: uppercase;
    transform: rotate(180deg);
    writing-mode: vertical-lr;
}

#auth .ui.message {
    border-radius: 1rem;
    font-weight: 700;
    line-height: 1.5;
}

#auth .card {
    border-bottom: 0.5rem solid #483d8b;
    border-radius: 1rem !important;
    box-shadow: 0 6px 20.1px 4.9px rgba(176, 191, 238, 0.12) !important;
    overflow: hidden;
}

#auth .card input {
    border-radius: 100px;
}

#auth .card label:not(.checkbox) {
    padding-left: 1rem;
}

#auth .card .ui.dropdown {
    border-radius: 100px;
}

#auth .card .ui.dropdown .menu {
    border-radius: 1rem !important;
    box-shadow: none !important;
}

#auth .card .ui.dropdown .menu .item {
    font-size: 1.1rem;
    line-height: 1.3;
}

#auth .card .ui.dropdown .menu .item:not(:last-child) {
    border-bottom: 1px solid #f3f3f3;
}

#auth .card .content {
    padding: 1rem 1.5rem !important;
}

#auth .card .content.logo {
    align-items: center;
    background: #fff;
    border-bottom: 0.5rem solid #7463dd;
    display: flex;
    justify-content: center;
    min-height: 100px;
}

#auth .card .content.logo a {
    display: block;
}

#auth .card .content.logo img {
    height: auto;
    max-width: 210px;
    width: 100%;
}

#auth .card .content .title {
    color: #2d73ad;
}

#auth.newsletter-unsubscribe .logo {
    background: #cd5c5c !important;
}

#auth.newsletter-unsubscribe .logo a {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    margin: 0 !important;
    padding: 0.5rem !important;
}

#auth.newsletter-unsubscribe h2 {
    color: #464646;
    font-size: 1.3rem !important;
    font-weight: 600;
}

.ad {
    margin: 1rem auto;
    text-align: center;
}

.ad:not(.ad_300x250):not(.ad_728x90):not(.responsive_ad) {
    display: none;
}

.ui.dimmer {
    height: 100vh !important;
    overflow: hidden !important;
    position: fixed;
}

#recently-viewed-items {
    background: #fff;
    border-radius: 0;
    margin: -1rem 0 1rem !important;
    padding: 1rem;
    width: 100%;
}

#recently-viewed-items>.title {
    color: #252525;
    display: table;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0.5rem auto;
    max-width: 1200px;
    padding: 0.75rem 0 0.5rem;
    width: 100%;
}

#recently-viewed-items .items {
    display: flex;
    flex-wrap: nowrap;
    flex-flow: row-reverse;
    margin: 0 auto;
    max-width: 1200px;
    overflow: auto;
    padding: 1rem 0;
}

#recently-viewed-items .items::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}

#recently-viewed-items .items:hover {
    overflow: auto;
}

#recently-viewed-items .items::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#recently-viewed-items .items::-webkit-scrollbar-thumb {
    background: #c1c1c1;
}

#recently-viewed-items .items::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

#recently-viewed-items .items .item {
    border-radius: 1rem;
    display: block;
    height: 100px;
    margin: 0 0.5rem;
    min-height: 100px;
    min-width: 100px;
    overflow: hidden;
    position: relative;
    width: 100px;
}

#recently-viewed-items .items .item:first-child {
    margin-right: auto;
}

#recently-viewed-items .items .item:last-child {
    margin-left: 0;
}

#recently-viewed-items .items .item .remove {
    color: #fff;
    cursor: pointer;
    position: absolute;
    right: 0.25rem;
    top: 0.25rem;
}

#recently-viewed-items .items .item .image {
    background-position: 50%;
    background-size: cover;
    display: block;
    height: 100px;
    width: 100px;
}

#live-search .products {
    border-radius: 1.5rem;
    margin-top: 0.5rem;
    position: absolute;
}

#live-search .item,
#live-search .products {
    background: #fff;
    overflow: hidden;
    width: 100%;
}

#live-search .item {
    display: block;
    font-size: 1.2rem;
    line-height: 1.5;
    padding: 1rem 1.5rem;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#live-search .item:hover {
    background: linear-gradient(45deg, #f8f8ff, #fdfdfd, #f8f8ff);
    color: #000;
    font-weight: 500;
}

#live-search .item:first-child {
    border-radius: 1.5rem 1.5rem 0 0;
}

#live-search .item:last-child {
    border-radius: 0 0 1.5rem 1.5rem;
}

#live-search .item:not(:last-child) {
    border-bottom: 1px solid #efefef;
}

#affiliate {
    margin: 4rem auto 0;
    max-width: 1100px;
}

#affiliate .top-panel {
    padding: 2rem;
}

#affiliate .top-panel .ui.header {
    color: #1abdff;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

#affiliate .top-panel .ui.header .sub {
    color: #708090;
    font-size: 1.5rem;
    font-weight: 500;
}

#affiliate .ui.items .item.image>div {
    flex: 1;
}

#affiliate .ui.items .item.image .content * {
    font-size: 1.2rem;
    line-height: 1.8 !important;
}

#affiliate .ui.items .item.image .content .header {
    font-size: 1.4rem;
    font-weight: 600;
}

@media (max-width: 1440px) {
    #top-search .categories.large .label:nth-child(-n + 5) {
        display: none;
    }
}

@media (max-width: 1280px) {
    #top-search .categories.large .label:nth-child(-n + 10) {
        display: none;
    }

    #items .column.left {
        background: #fff;
        display: none;
        left: 1rem;
        overflow: hidden;
        position: absolute;
        top: 174px;
        visibility: hidden;
        z-index: 2;
    }

    #items .column.left .ui.form .fields {
        flex-wrap: nowrap;
    }

    #items .column.left .ui.form .fields .field {
        margin-bottom: 0;
    }

    #items .column.left .ui.form .fields .field:last-child {
        flex: 1;
    }

    #items .column.right {
        border-radius: 0 !important;
        box-shadow: none !important;
    }
}

@media (max-width: 1100px) {

    #top-menu .right.menu .text,
    #top-search .categories.large .label:nth-child(-n + 15) {
        display: none;
    }

    #top-menu .right.menu .item {
        margin: 0 0.15rem !important;
    }

    #top-menu .right.menu .item i {
        margin: 0;
    }

    #user-directory .card {
        width: calc(25% - 1rem);
    }
}

@media (min-width: 1025px) {
    .mobile-only {
        display: none !important;
    }

    #blur,
    #mobile-menu {
        visibility: hidden !important;
    }

    html {
        overflow: visible !important;
    }
}

@media (max-width: 1024px) {
    #item .r-side {
        max-width: unset;
    }

    #prepaid-credits>.body {
        flex-direction: column;
    }

    #support>.body {
        padding: 1rem;
    }

    #support>.body .container {
        align-items: center;
        flex-direction: column;
    }

    #support>.body .container>div {
        max-width: unset !important;
        padding: 1.5rem !important;
        width: 100%;
    }

    #support>.body .container>div.left-side {
        padding: 1.5rem 0 !important;
    }

    #body .cards.masonry {
        grid-template-columns: repeat(3, minmax(auto, 1fr)) !important;
    }

    #blog .post.grid {
        display: block;
    }

    #blog .post.grid .column {
        padding: 0;
        width: 100%;
    }

    #blog .post.grid .column.right {
        background: #fafafa;
        flex: 1;
        margin: 3rem -1rem -2rem;
        max-width: none;
        padding: 2rem 1rem;
        width: auto;
    }

    #blog .post.grid .column.right .items-wrapper.search {
        border-bottom: 1px solid #e5e5e5;
        margin: -1rem;
        padding: 0 1rem 1rem;
    }

    #item {
        max-width: 100vw;
        padding: 1rem 0;
    }

    #item .row.main {
        display: block;
    }

    #item .row.main .column {
        padding: 1rem;
        width: 100%;
    }

    #item .row.main .column.l-side {
        margin-right: 0 !important;
    }

    #item .row.main .column.r-side {
        margin-top: 2rem;
    }

    #item #header .column {
        padding: 1rem;
    }

    #item #header .item {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        margin-top: 0;
    }

    #item #header .item .image:not(.rating) {
        text-align: center;
    }

    #item #header .item .image:not(.rating) img {
        min-width: 100%;
    }

    #item #header .item .content {
        margin: 2rem 0;
    }

    .desktop-only {
        display: none !important;
    }

    #checkout-page .column.left,
    #checkout-page .column.right {
        width: 100% !important;
    }

    #checkout-page .column.right {
        margin-left: auto !important;
        margin-right: 0 !important;
    }

    #checkout-page td:nth-child(2),
    #checkout-page th:nth-child(2) {
        border-left: 0;
    }

    #checkout-page>.container {
        flex-direction: column;
    }

    #checkout-page>.container .left-side {
        margin-right: 0;
    }

    #top-menu .right.menu>.item.blog,
    #top-menu .right.menu>.item.categories,
    #top-menu .right.menu>.item.collection,
    #top-menu .right.menu>.item.credits,
    #top-menu .right.menu>.item.help {
        display: none;
    }
}

@media (max-width: 820px) {
    #top-menu .right.menu .item.search {
        display: none;
    }
}

@media (max-width: 768px) {
    #top-search .categories.large .label:nth-child(-n + 20) {
        display: none;
    }

    #checkout-page.hasItems .card {
        margin-right: 220px;
    }

    #checkout-page .cart-items {
        min-height: auto;
    }

    #checkout-page .cart-items>.item .image {
        display: none;
    }

    #checkout-page .payment-methods {
        width: 220px;
    }

    #support .column.right {
        display: block;
        margin-top: 1rem;
        width: 100%;
    }

    #user-directory .card {
        width: calc(33.33333% - 1rem);
    }
}

@media (max-width: 680px) {
    #item>.purchase {
        background: transparent;
        padding: 1rem;
        position: relative !important;
    }

    #item>.purchase>.ui.menu {
        background: #efefef;
        flex-direction: column;
    }

    #item>.purchase>.ui.menu>.item {
        color: #000;
    }

    #item>.purchase>.ui.menu>.item:not(:last-child) {
        border-bottom: 2px solid #fff;
        border-right: none;
    }

    #item>.purchase>.ui.menu>.item.header {
        background: #ff5a5a;
        color: #fff;
    }

    #item .row.main {
        padding: 1rem;
    }

    #item .l-side .sharer {
        bottom: 0;
        padding: 1rem;
        position: unset;
        right: unset;
    }

    #item .l-side .sharer .buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    #item .l-side .sharer .buttons .item {
        display: flex;
        margin: 5px;
    }

    #body .cards.masonry {
        grid-template-columns: repeat(2, minmax(auto, 1fr)) !important;
    }

    #top-menu .right.menu .item {
        padding: 1rem 0.75rem;
    }

    #top-menu .right.menu .item.search-icon {
        display: flex;
    }

    #top-menu .right.menu .item.dropdown.search .menu {
        left: 0;
    }

    #top-menu>.item.search {
        display: none;
    }

    #mobile-search-bar {
        display: flex;
    }

    #posts .social-buttons i {
        margin-right: 0 !important;
    }

    #posts .social-buttons span {
        display: none;
    }

    #pricing .ten.wide.column {
        padding: 1rem !important;
        width: 100% !important;
    }

    #checkout-response .columns {
        display: block;
    }

    #checkout-response .columns>div.left {
        margin: auto auto 2rem;
    }

    #checkout-response .columns>div.right {
        margin: auto;
    }
}

@media (max-width: 510px) {
    #body .cards.masonry {
        grid-template-columns: repeat(1, minmax(auto, 1fr)) !important;
    }
}

@media (max-width: 570px) {
    #checkout-page .payment-methods {
        border-radius: 1rem;
        position: static;
        width: 100%;
    }

    #checkout-page.hasItems .card {
        margin-right: 0;
    }

    #item {
        margin-bottom: 0 !important;
    }

    #item #header {
        margin-bottom: 1rem;
    }

    #item #header .content {
        margin-bottom: 0;
    }

    #item #header .buttons {
        flex-wrap: wrap;
    }

    #item #header .buttons .button {
        margin: 0.5rem;
    }

    #items .ui.four.doubling.cards {
        padding: 1 !important;
    }

    #top-menu .right.menu {
        padding-right: 0 !important;
    }

    #user-directory .card {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 520px) {
    #support .faq {
        padding: 0 !important;
    }

    #top-search .header {
        font-size: 1.9rem;
        font-weight: 600;
        line-height: 1.5;
    }

    #top-search .categories.large .label:nth-child(-n + 25) {
        display: none;
    }

    .home-items .wrapper.free .ui.doubling.cards .card {
        max-width: 150px;
        padding: 0.5rem 0;
    }

    .home-items .wrapper.free .ui.doubling.cards .card .thumbnail {
        height: 130px;
        width: 130px;
    }

    .home-items .wrapper.free .ui.doubling.cards .card:not(:first-child) {
        margin-top: 0 !important;
    }

    #items .search.item {
        display: none;
    }

    #items .left-column-toggler {
        margin-left: auto;
    }

    .ui.doubling.cards {
        display: block;
        /*padding: 1rem !important;*/+
    }

    .ui.doubling.cards .card {
        display: flex !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .ui.doubling.cards .card:not(:first-child) {
        margin-top: 1rem !important;
    }

    .ui.doubling.cards .card .content.title {
        display: block;
        overflow: visible;
        text-align: left;
        text-overflow: clip;
        white-space: normal !important;
        width: 100%;
    }

    #page-title .column {
        width: 100% !important;
    }

    #page-title .content {
        padding: 0;
    }

    #page-title .image {
        display: none;
    }

    #item .l-side .top.menu .item.dropdown {
        display: flex;
    }

    #item .l-side .top.menu .tabs {
        display: none !important;
    }

    #item .reviews .ui.image,
    #item .support .ui.image {
        display: none;
    }

    #item .reviews .content,
    #item .support .content {
        padding-left: 0 !important;
    }

    .home-items .ui.four.doubling.cards {
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    #item>.main.row {
        padding: 1rem;
    }

    #item #header .container {
        flex-direction: column;
    }

    #item #header .container .thumb {
        margin: 0 0 1.5rem;
        max-width: unset;
        width: 100%;
    }

    .home-items .wrapper.newest .ui.items .item {
        width: 135px;
    }

    .home-items .wrapper.newest .ui.items .item .cover {
        height: 135px;
    }

    .home-items .wrapper.featured .ui.secondary.menu a {
        background: #f5f5f5;
        flex: 1;
        font-size: 1rem;
        justify-content: center;
        min-height: 64px;
        text-align: center;
        width: 50%;
    }

    #footer .footer-menu .ui.menu {
        flex-direction: row !important;
    }

    #footer .footer-menu .ui.menu>.item {
        align-self: flex-start;
        flex: 1;
        font-size: 1rem;
        line-height: 1.5;
        min-height: 64px;
    }

    #app:not(.home) #mobile-top-search {
        background: #f0f0f0;
        margin-bottom: -1rem;
        padding: 1rem;
    }

    #app:not(.home) #mobile-top-search input {
        border: 1px solid rgba(34, 36, 38, 0.15);
    }

    #app:not(.home) #single-page {
        margin-top: 20px;
    }

    #app:not(.home) #single-page .title-wrapper h1 {
        font-size: 1.8rem;
    }

    #app:not(.home) #guest,
    #app:not(.home) #items {
        margin: 0 auto !important;
    }

    #guest .purchases .titles>div,
    #user .purchases .titles>div {
        font-size: 1.1rem;
        font-weight: 600;
    }

    #mobile-menu-2 {
        display: flex;
    }

    /*.main.container {*/
    /*    padding-bottom: 70px;*/
    /*}*/

    #top-search {
        margin-top: -126px;
        padding-top: 126px !important;
    }

    #top-search .header {
        font-size: 2.2rem;
    }

    #top-search form {
        display: none;
    }

    #mobile-top-search {
        align-items: center;
        display: flex;
    }

    #mobile-top-search input {
        padding-right: 40px;
    }

    #mobile-top-search i {
        position: absolute;
        right: 1.75rem;
       
    }

    #checkout-page .cart-items .cart-item .image {
        display: none;
    }

    #checkout-page>.container {
        padding: 2rem 1rem;
    }

    #checkout-page>.container .left-side .item.product {
        width: 100%;
    }

    #checkout-page>.container .left-side .item.product .image {
        height: 80px;
        width: 80px;
    }

    #blog .ui.menu:not(.pagination) .item.search {
        width: 150px;
    }

    #top-menu .header.logo img {
        max-width: 130px;
        min-width: auto;
        width: 100%;
    }

    #top-menu .header.logo i {
        color: #901ab0;
        display: block;
        font-size: 1.5rem;
    }

    #top-menu .dropdown {
        display: none;
    }

    #item .l-side .reviews .item.parent .content:first-child div.right {
        display: block;
        left: 0;
        position: absolute;
        top: 3.5rem;
        width: 100%;
    }

    #item .l-side .reviews .item.parent .content:first-child div.right span {
        background: #fff;
        border-radius: 0.25rem;
        font-size: 0.7rem;
        font-weight: 700;
        margin-right: 0.5rem;
        padding: 0.25rem;
    }

    #item .l-side .reviews .item.parent .content:first-child .middle {
        padding: 0 0 0 1rem;
    }

    #item .l-side .support .item.parent .content:first-child .middle {
        white-space: nowrap;
        width: 100%;
    }

    #item .l-side .support .item.parent .content:first-child .right {
        position: absolute;
        right: 0.5rem;
        top: 0.5rem;
    }

    #item .l-side .support .item.parent .content:first-child .right span {
        background: #fff;
        border-radius: 0.25rem;
        font-size: 0.7rem;
        padding: 0.1rem 0.25rem;
        white-space: nowrap;
    }

    #item #header .content .wrapper .actions .buttons {
        margin-left: -0.5rem;
    }

    #item #header .content .wrapper .actions .buttons .button {
        font-size: 1rem;
        padding: 0.75rem;
    }

    #item #header .content .header {
        max-width: calc(100vw - 5rem);
    }

    #item #header .cover-wrapper.type-audio .player .link {
        font-size: 1rem !important;
        padding: 0.75rem;
    }

    #item #header .ui.items .item {
        justify-content: normal;
    }

    #item #header .cover-wrapper.type-audio .audio-container .thumbnail img {
        margin: auto;
        max-height: 150px;
        max-width: 150px;
    }

    #posts .social-buttons button {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    #checkout-response {
        margin-top: 0 !important;
    }

    .form-check-label {
        font-size: 16px !important;
        padding: 0px 15px !important;
    }
}

@media (max-width: 400px) {

    .form-check-label {
        font-size: 16px !important;
        padding: 0px 15px !important;
    }

    .btn-filter{
        margin-top: 10px;
        padding: 6px 20px 6px 20px;
    }


    .form-check-input {
        width: 1.3em !important;
        height: 1.3em !important;
        margin-top: 0.2em !important;
    }
    #mobile-menu-2 .item {
        font-size: 0.7rem;
    }

    #mobile-menu-2 .item svg {
        height: 28px;
        width: 28px;
    }

    #checkout-page .column.right {
        max-width: 100%;
    }

    #checkout-page .cart-items .cart-item .image {
        display: none;
    }

    #checkout-page .payment-methods .items .item .icons img {
        max-width: 20px;
    }

    #checkout-page .payment-methods .items .crypto .icons {
        display: none;
    }

    #top-menu .dropdown.notifications .menu {
        left: -50px !important;
    }

    #top-menu .dropdown.cart .menu {
        left: 20px !important;
        margin: 0 !important;
    }

    #user-directory .card {
        width: 100%;
    }
}

/*# sourceMappingURL=tendra-ltr.css.map*/
/*---------------------------------------Css Added by Rutik------------------------------------------*/
.border-bottom-white {
    border-bottom: 1px solid #fff6f6 !important;
}

.proName a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.proCat a {
    color: #868585 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-family: "Roboto", sans-serif !important;
    font-style: normal !important;
}



