.group {
    overflow: hidden;
    position: relative;
    border-radius: 3px;
    box-sizing: border-box;
    background-color: #f8fafb;
}

.group:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: 3px;
    box-shadow: inset 0 0 0 1px #bac8d3;
    content: "";
    z-index: 2;
}

.group>* {
    border-right: 1px solid;
    border-color: #bac8d3;
}

.group>:last-child {
    border: none;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.group__context {
    padding: 0 10px;
}

.group__context span {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    position: relative;
    display: block;
}

.group__input {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.group__input input[type=text] {
    margin: 0;
    border: none;
}

.group__input input {
    height: 100%;
}

button,
input[type=submit] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    user-select: none;
    cursor: pointer;
}

.bj-button {
    position: relative;
    display: inline-block;
    border: none;
    border-radius: 0px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    padding: 0 30px;
    min-width: 52px;
    height: 52px;
    font-size: 16px;
    line-height: 44px;
    transition: .25s linear;
    background: #1273eb;
    color: #fff;
}

.bj-button:hover {
    background: #0161cd;
    background-outline: rgba(1, 97, 205, .1);
    box-shadow-outline: inset 0 0 0 2px #0161cd;
    color-outline: #0161cd;
    color: #fff;
}

.bj-button:after {
    display: table;
    clear: both;
    content: "";
}

.bj-button i~span {
    margin-left: 10px;
}

.bj-button span {
    float: left;
}

.bj-button i {
    float: left;
    color: inherit !important;
    fill: inherit !important;
    font-size: 18px;
}

.bj-button i:before {
    display: block;
}

.bj-button--icon {
    padding: 0 !important;
}

.bj-button--icon i {
    float: inherit !important;
    margin: 0 auto;
}

.bj-button--sm {
    padding: 0 20px;
    min-width: 34px;
    height: 34px;
    font-size: 14px;
    line-height: 34px;
}

.bj-button--sm i {
    font-size: 16px;
}

.bj-button--outline {
    background: transparent;
    box-shadow: inset 0 0 0 2px #1273eb;
    color: #1273eb;
}

.bj-button--outline:hover {
    background: rgba(1, 97, 205, .1);
}

.bj-button--outline:hover {
    box-shadow: inset 0 0 0 2px #0161cd;
}

.bj-button--outline:hover {
    color: #0161cd;
}

.bj-button--yellow {
    background: #fca120;
    color: #fff;
}

.bj-button--yellow:focus,
.bj-button--yellow:hover {
    background: #f69110;
}

.bj-button--yellow:focus,
.bj-button--yellow:hover {
    color: #fff;
}

.bj-button--green {
    background: #2bc48a;
    color: #fff;
}

.bj-button--green:focus,
.bj-button--green:hover {
    background: #00af80;
}

.bj-button--green:focus,
.bj-button--green:hover {
    color: #fff;
}

.bj-button--white {
    background: transparent;
    box-shadow: inset 0 0 0 2px #cfd9e0;
    color: #bf5757;
}

.bj-button--white:focus,
.bj-button--white:hover {
    background: rgba(248, 250, 251, .1);
}

.bj-button--white:focus,
.bj-button--white:hover {
    box-shadow: inset 0 0 0 2px #cfd9e0;
}

.bj-button--white:focus,
.bj-button--white:hover {
    color: #374957;
}

.bj-button--facebook {
    color: #fff;
}

.bj-button--facebook:focus,
.bj-button--facebook:hover {
    background: #0d6fed;
}

.bj-button--facebook:focus,
.bj-button--facebook:hover {
    color: #fff;
}

.bj-button--twitter {
    color: #fff;
}

.bj-button--twitter:focus,
.bj-button--twitter:hover {
    background: #47a5ed;
}

.bj-button--twitter:focus,
.bj-button--twitter:hover {
    color: #fff;
}

.bj-button--pinterest {
    background: #cb2027;
    color: #fff;
}

.bj-button--pinterest:focus,
.bj-button--pinterest:hover {
    background: #be1e24;
}

.bj-button--pinterest:focus,
.bj-button--pinterest:hover {
    color: #fff;
}

* {
    box-sizing: border-box;
    outline: none;
}

.group,
.radio,
.row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.col {
    position: relative;
    margin: 0 0 10px;
    padding: 0 5px;
    box-sizing: border-box;
}

.row--horizontal-center {
    justify-content: center;
}

.group,
.radio,
.row--vertical-center {
    align-items: center;
}

.col--stretch,
.group>* {
    align-self: stretch;
}

.row {
    margin: 0 -5px;
}

.col {
    flex: 1;
}

html .medium {
    font-weight: 400;
}

html .alignl {
    text-align: left;
}

html .alignc {
    text-align: center;
}

html .font-sm {
    font-size: 14px;
}

html .uppercase {
    text-transform: uppercase;
}

html .full-width {
    width: 100% !important;
}

html .block {
    display: block;
}

html .size--sm {
    height: 34px;
    font-size: 14px;
    line-height: 34px;
}

html .mg-none-i {
    margin: 0 !important;
}

html .mg-top-lv1-i {
    margin-top: 5px !important;
}

html .mg-right-lv1 {
    margin-right: 5px;
}

html .mg-left-lv1 {
    margin-left: 5px;
}

html .mg-right-lv2 {
    margin-right: 10px;
}

html .mg-bottom-lv2 {
    margin-bottom: 10px;
}

html .mg-left-lv2 {
    margin-left: 10px;
}

html .mg-left-lv2-i {
    margin-left: 10px !important;
}

.row.pack-view.mg-none {
    margin-top: 40px;
    background-color: #fff;
    box-shadow: 0 4px 14px 0 rgba(15, 22, 41, 0.06);
    border-radius: 8px;
}

html .mg-none {
    margin: 0px;
}

html .pd-bottom-lv1-i {
    padding-bottom: 5px !important;
}

html .pd-lv2-i {
    padding: 10px !important;
}

html .pd-right-lv2 {
    padding-right: 10px;
}

html .pd-lv3 {
    padding: 20px;
}

html .pd-top-lv4 {
    padding-top: 30px;
}

html .pd-none {
    padding: 0;
}

html .pd-y-none {
    padding-top: 0;
    padding-bottom: 0;
}

@media screen and (max-width:768px) {
    html .hide-mobile {
        display: none !important;
    }
}

html .disabled {
    opacity: .4;
}

html .disabled,
html .disabled * {
    pointer-events: none !important;
}

.bj-button i,
.icon {
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    speak: none;
}

.bj-button i:before,
.icon:before {
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
}

.icon {
    width: 16px;
    height: 16px;
    font-size: 16px;
    line-height: 16px;
}

.icon--facebook {
    color: #1877f2;
    fill: #1877f2;
}

.icon--pinterest {
    color: #cb2027;
    fill: #cb2027;
}

.icon--twitter {
    color: #55acee;
    fill: #55acee;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.modal__trigger {
    cursor: pointer;
}

.author {
    font-size: 14px;
}

h1,
h6 {
    margin: 20px 0;
    padding: 0;
    color: #374957;
    line-height: 1.4;
}

h1 {
    line-height: 1.2;
}

h1 {
    font-size: 40px;
}

@media screen and (min-width:480px) {
    h1 {
        font-size: calc(40px + (600vw - 2880px)/920);
    }
}

@media screen and (min-width:1400px) {
    h1 {
        font-size: 46px;
    }
}

h6 {
    font-size: 20px;
}

@media screen and (min-width:480px) {
    h6 {
        font-size: calc(20px + (600vw - 2880px)/920);
    }
}

@media screen and (min-width:1400px) {
    h6 {
        font-size: 26px;
    }
}

a {
    cursor: pointer;
    text-decoration: none;
}

.pack-view__header .pack-view p {
    margin: 10px 0px;
    box-shadow: inset 0 0 0 1px #cfd9e0;
    padding: 2px 4px;
    border-radius: 4px;
}

.pack-view p {
    margin: 10px 0px 20px;
}

.pack-view__header {
    display: flex;
    align-items: baseline;
    padding: 10px 20px;
    margin-bottom: 40px;
}

@media screen and (max-width:992px) {
    .pack-view__header {
        padding: 30px 15px 15px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width:640px) {
    .pack-view__header {
        align-items: flex-start;
        flex-direction: column;
        padding: 10px 15px 15px;
    }

    .pack-view__header--icons.new--badge {
        margin: 10px 0px !important;
    }

    .pack-view__filters * {
        display: none !important;
    }
}

.pack-view__header--title {
    margin: 0;
    font-size: 26px;
    color: #222;
}

@media screen and (max-width:640px) {
    .pack-view__header--title {
        font-size: 18px;
        text-overflow: ellipsis;
        overflow: hidden;
        width: 100%;
        text-align: left;
    }
    .pack-view__header--title .maintitle160 {
        max-width: 260px;
    }
}

.pack-view__header--icons {
    margin: 0 0 4px 10px;
}

@media screen and (max-width:640px) {
    .pack-view__header--icons {
        margin-left: 0;
    }
}

.pack-view__filters {
    padding: 0 30px 12px 20px;
    overflow: auto;
    box-shadow: 0px 20px 18px 0 rgba(15, 22, 41, 0.06);
    border-bottom: 1px solid #ececec;
    text-align: left;
}

@media screen and (max-width:992px) {
    .pack-view__filters {
        padding: 0 30px 15px;
        overflow: auto;
        box-shadow: 0 4px 14px 0 rgba(15, 22, 41, 0.06);
        border-bottom: 1px solid #e3e9ed;
    }
}

.pack-view__filters .style-link {
    position: relative;
    margin-right: 15px;
    font-size: 16px;
    border: 0 !important;
    color: #869fb2;
    display: inline-block;
}

.pack-view__filters .style-link:hover {
    color: #4a6375;
}

.pack-view__filters .style-link:last-child {
    margin-right: 0;
}

.pack-view__filters .style-link span {
    height: 34px;
    margin: 4px 0px;
}

.pack-view__filters .style-link span .style-name {
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: 20px;
    font-size: 14px;
    background-color: #f1f1f1;
    padding: 2px 20px;
    color: #555;
}

.pack-view__filters .style-link span .style-name:hover {
    background-color: #ffb229 !important;
    color: #fff !important;
}

.pack-view__filters .style-link span [type=radio]:checked~.style-name {
    color: #374957;
    font-weight: 700;
}

.pack-view__filters .style-link .fake-radio {
    position: absolute;
    top: 0;
    opacity: 0;
}

button.btn--follow {
    box-shadow: inset 0 0 0 2px #4caf50;
    color: #008604;
    background: none;
    border-radius: 80px;
    font-weight: 500;
}

button.btn--follow:hover {
    color: #d78b08;
    box-shadow: inset 0 0 0 2px #d78b08;
    background-color: #fff;
}

button.btn--follow .state--active {
    display: none;
}

button.btn--bookmark {
    font-size: 16px;
    display: block;
}

button.btn--bookmark:hover i,
button.btn--bookmark i {
    color: #1d262d;
}

button.btn--bookmark+.tooltip__content .state--active,
button.btn--bookmark .state--active {
    display: none;
}

.bj-button {
    transition: none;
    border-radius: 3px;
}

.bj-button .icon:before {
    vertical-align: baseline !important;
}

.bj-button--white {
    background-color: #ff0d011f;
    box-shadow: none;
}

.bj-button--white:active,
.bj-button--white:focus,
.bj-button--white:hover {
    background-color: #2eb7833b;
    box-shadow: none;
}

::-moz-selection {
    background-color: rgba(74, 210, 149, .5);
}

::selection {
    background-color: rgba(74, 210, 149, .5);
}

img {
    max-width: 100%;
}

.icon--premium:before {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url(../svg/downloadl.svg) 50% no-repeat;
    background-size: 100%;
    content: "";
}

.icon--premium--white:before {
    background: url(../svg/downloadsvg.svg) 50% no-repeat;
}

.link--normal {
    font-weight: 400;
    color: #008b71;
}

.link--normal:hover {
    color: #008b71;
    text-decoration: underline;
}

.new--badge {
    font-size: 13px;
    color: #5f7d95;
    text-transform: uppercase;
    font-weight: 400;
}

.bj-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}

.bj-button--secondary {
    background: #e3e9ed;
    color: #374957 !important;
}

.bj-button--secondary:hover {
    background: #cfd9e0;
}

.bj-button--secondary:focus {
    background: #bac8d3;
}

.bj-button--secondary.bj-button--outline {
    background: none;
    color: #374957 !important;
    box-shadow: inset 0 0 0 2px #cfd9e0;
}

.bj-button--secondary.bj-button--outline:hover {
    background: rgba(207, 217, 224, .1);
    color: #318834;
    box-shadow: inset 0 0 0 2px #4caf50;
}

.bj-button--secondary.bj-button--outline:active {
    background: rgba(207, 217, 224, .2);
}

.bj-button--square {
    width: 52px;
    height: 52px;
    padding: 0;
}

.bj-button--facebook {
    background: #1877f2;
}

.bj-button--facebook:hover {
    background: #0d6ae4;
}

.bj-button--twitter {
    background: #55acee;
}

.bj-button--twitter:hover {
    background: #3ea1ec;
}

.bj-button i {
    font-size: 22px;
}

.icon22 {
    width: 22px;
    height: 22px;
    font-size: 22px;
    line-height: 22px;
}

.icon20 {
    width: 20px;
    height: 20px;
    font-size: 20px;
    line-height: 20px;
    vertical-align: top;
}

.bj-button span {
    margin: 0;
    padding: 0;
}

.pagination-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.pagination-bar__item {
    flex: 1;
}

.pagination-bar__item:nth-of-type(2) {
    flex: 2;
}

@media screen and (max-width:768px) {

    .pagination-bar__item:first-of-type,
    .pagination-bar__item:nth-of-type(3) {
        display: none;
    }
}

.pagination-bar__item .pagination-right-buttons {
    justify-content: flex-end;
}

.pagination-bar__item .pagination-right-buttons {
    display: flex;
    align-items: center;
    padding-right: 10px;
}

.pagination-bar__item .pagination-right-buttons .form-box {
    display: flex;
    align-items: center;
    margin: 20px 0 40px;
}

.pagination-bar__item .pagination-right-buttons .form-box [name=pagination-page] {
    border: 1px solid #cfd9e0;
    width: 50px;
    height: 33px;
    text-align: center;
    padding: 0;
    margin: 0 10px 0 0;
}

.pagination-bar__item .pagination-right-buttons .form-box .pagination-buttons {
    display: flex;
    margin-left: 10px;
}

.pagination-bar__item .pagination-right-buttons .form-box .pagination-buttons .pagination-next,
.pagination-bar__item .pagination-right-buttons .form-box .pagination-buttons .pagination-prev {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 33px;
    width: 28px;
    background: #e3e9ed;
    color: #374957;
}

.popover-share ul.popover-content {
    padding: 10px;
    right: -10px;
    z-index: 5;
}

.edge-content {
    position: absolute;
    left: 0;
    min-height: 90px;
    visibility: hidden;
    overflow: hidden;
    width: 100%;
    margin: 30px 0;
    background: #e3e9ed;
}

.edge-content.bn-space-aside {
    min-height: 300px;
}

.btn,
button,
input[type=submit] {
    background-color: #4ad295;
}

.btn:hover,
button:hover,
input[type=submit]:hover {
    background-color: #2bc48a;
}

.btn:active,
button:active,
input[type=submit]:active {
    background-color: #00af80;
}

.btn.btn-warning {
    background-color: #ffb229;
    box-shadow: 0 4px 8px 0 rgba(244, 205, 87, 0.51);
}

.btn.btn-warning:hover {
    background-color: #fca120;
}

.btn.btn-warning:active {
    background-color: #f69110;
}

.btn.nostyle:active,
.btn.nostyle:hover,
button.nostyle:active,
button.nostyle:hover {
    background: none;
}

.btn,
button,
input[type=submit] {
    appearance: none;
    background-color: #2bc48a;
    border: none;
    border-radius: 0px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    line-height: 1;
    padding: .75em 1em;
    text-decoration: none;
    user-select: none;
    vertical-align: middle;
    white-space: nowrap;
    outline: none;
    border-radius: 3px;
}

.btn:focus,
.btn:hover,
button:focus,
button:hover,
input[type=submit]:focus,
input[type=submit]:hover {
    color: #fff;
}

.btn:disabled,
button:disabled,
input[type=submit]:disabled {
    cursor: not-allowed;
    opacity: .5;
}

.btn.nostyle,
button.nostyle {
    padding: 0;
    background: none;
}

.btn i:before,
.btn span,
button i:before,
button span {
    vertical-align: middle;
}

button .icon:before {
    vertical-align: unset;
}

.notouch .author a:hover {
    color: #4c5b5c;
}

.ssm_adunit_container {
    position: relative;
}

.radio-group {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -moz-box-align: start;
    box-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
    -ms-flex-align: start;
}

.radio-group input[type=radio] {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.radio-group input[type=radio]:checked+label.fake-radio:before {
    box-shadow: inset 0 0 0 7px #00af80;
}

.radio-group label {
    cursor: pointer;
    margin: 0;
}

.radio-group .fake-radio {
    cursor: pointer;
    position: relative;
    margin-right: 5px;
    padding: 0;
}

.radio-group .fake-radio:before {
    content: "";
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-block;
    box-shadow: inset 0 0 0 1px #cfd9e0;
}

.disabled {
    opacity: .6;
    cursor: none !important;
    pointer-events: none;
}

.hidden {
    display: none !important;
}

.fullwidth {
    width: 100%;
}
.showiconopen .fullwidth{
    width: calc(100% - 470px);
}


.fullwidth100 {
    width: 100%;
}

.avatar,
.block {
    display: block;
}

.avatar {
    width: 110px;
    height: 110px;
    border-radius: 100%;
    background-size: 100%;
}

.avatar img {
    border-radius: 100%;
    width: 100%;
    height: auto;
}

.avatar.avatar-60 {
    width: 58px;
    height: 58px;
}

.pack-view__header--icons.new--badge {
    margin: 0 0 20px 10px;
    background-color: #4eb783;
    padding: 2px 6px;
    border-radius: 20px;
    color: #fff;
}

.icons .icon--item:hover .overlay {
    display: block;
    opacity: 1;
    z-index: 100000;
}

.notouch .icons .icon--item:hover .overlay {
    display: block;
}

.icons .icon--holder {
    width: 100%;
    height: 100%;
    position: relative;
}

.icons .icon--item .overlay .icon--item__context-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.icons .icon--item .overlay .icon--item__context-menu li {
    margin: 5px;
}

.icons .icon--item .overlay .icon--item__context-menu li:nth-child(2) {
    margin-top: 0;
    margin-bottom: 0;
}

.icons .icon--item .overlay .icon--item__context-menu li button {
    width: 34px;
    height: 34px;
    pointer-events: all;
}

.icons {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -moz-box-align: start;
    box-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;
    -ms-flex-align: start;
    -webkit-align-content: start;
    -moz-align-content: start;
    align-content: start;
    -ms-flex-line-pack: start;
    width: 100%;
}

.icons .icon--item {
    min-width: 140px;
    max-width: 140px;
    flex: 1;
    position: relative;
}

.icons .icon--item .icon--holder:after {
    content: "";
    padding-bottom: 100%;
    display: block;
}

.icons .icon--item img {
    transition: all 0.3s ease-in-out;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 70px;
    left: 70px;
    margin: -32px 0 0 -32px;
}

.icons .icon--item .overlay {
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: none;
    border: 1px dashed rgba(45, 153, 15, 0.55);
    background-color: rgba(179, 240, 214, 0.17);
    pointer-events: none;
}

.icons .icon--item i {
    color: #1d262d;
}

.icons .icon--item .view {
    color: #fff;
    font-size: 24px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    height: 100%;
}

.icons .icon--item.icon-fill {
    height: 0;
}

.icons .icon--item .view:hover img {
    transform: scale(1.12);
}

@media (max-width:480px) {
    .col--icons {
        padding: 0;
    }

    .icons .icon--item {
        min-width: 33.33%;
    }
}

.showicontitle {
    position: absolute;
    bottom: 8px;
    left: 5%;
    right: 5%;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    transition: all .2s ease;
    max-height: 26px;
    line-height: 20px;
    font-size: 14px;
    color: rgba(51, 51, 51, .7);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 700;
}

@media (max-width:360px) {
    .icons .icon--item img {
        width: 54px;
        height: 54px;
        margin: -27px 0 0 -27px;
    }
}

.circle-spinner:not(:required) {
    animation: spinner .8s linear infinite;
    border: 2px solid #1d262d;
    border-right-color: transparent;
    border-radius: 100%;
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-indent: -9999px;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin: 20px 10px 40px;
}

.pack-view aside {
    width: 470px;
    position: relative;
    border-left: 1px solid #e3e9ed;
    z-index: 2;
}

.pack-view aside .pinterest--button i {
    color: #cb2027 !important;
}

.pack-view aside #pack-lincense {
    padding: 10px 20px 0;
}
.pack-view aside .sidebar-holder{
    text-align: left;
}
.pack-view aside .sidebar-holder .not-pattern>div {
    display: flex;
}

.pack-view aside .sidebar-holder .not-pattern>div>div:first-child {
    flex-grow: 1;
}

.pack-view aside .sidebar-holder .not-pattern .bj-button {
    padding: 0 20px;
}

.pack-view aside .sidebar__formats {
    padding: 10px 20px 0;
    margin-top: 10px;
    border-top: 1px solid #e3e9ed;
}

.pack-view aside .sidebar__formats p :first-child {
    color: #374957;
    font-weight: 400;
}

.pack-view aside .sidebar__author {
    padding: 10px 20px;
    border-top: 1px solid #e3e9ed;
}

.pack-view aside .share {
    margin-left: 0;
}

.pack-view aside .a-wrapper {
    overflow: hidden;
}

.pack-view .style-link {
    border-top: 1px solid #e3e9ed;
}

.pack-view .style-link a.link--normal,
.pack-view .style-link span.mg-right-lv1 {
    font-size: 14px;
}

.pack-view .search-result {
    min-height: 400px;
    margin: 30px;
    display: flex;
}

@media (max-width:1120px) {
    .pack-view .search-result {
        min-height: 0;
        margin: 4px;
        padding: 4px 4px 20px;
        display: block;
    }

    .pack-view aside {
        width: 100%;
        border-top: 1px solid #e3e9ed;
        z-index: 11;
        padding-bottom: 85px;
    }
    .showiconopen .pack-view aside {
        display: none;
    }

    .pack-view aside .sidebar__author {
        border: none;
    }

    .pack-view .sidebar__download {
        width: 100%;
    }

    .pack-view .sidebar__download>div {
        padding: 0 !important;
    }

    .pack-view .sidebar__download__buttons {
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: #fff;
        border-top: 1px solid #e3e9ed;
        padding: 20px 74px 20px 20px;
        z-index: 4;
    }

    .pack-view .sidebar__download__buttons .col {
        margin-bottom: 0;
        max-width: 400px;
    }

    .pack-view .sidebar-holder .not-pattern>div {
        display: flex;
    }

    .pack-view .sidebar__license-formats {
        padding: 0 0 6px;
        min-height: 140px;
        border-bottom: 1px solid #e3e9ed;
    }

    .pack-view .patterns--button,
    .pack-view .pinterest--button {
        display: none;
    }

    .pinterest--button{padding-left: 10px;}
    .pack-view aside .share{
        display: none;
    }
    .pack-view .popover-share {
        position: fixed;
        right: 20px;
        bottom: 20px;
        z-index: 4;
    }

    .pack-view .style-link {
        font-size: 14px;
        text-align: center;
    }

    .pack-view .popover-share .popover-content {
        top: auto;
        bottom: 100%;
        margin-bottom: 10px;
    }

    .pack-view .popover-share .popover-content:before {
        border-top: 10px solid #000;
        border-bottom: none;
        top: auto;
        bottom: -.45em;
    }

    .pack-view .popover-share .popover-content:after {
        border-top: 12px solid #fff;
        border-bottom: none;
        top: auto;
        bottom: -.45em;
    }
}

@media (max-width:680px) {
    .pack-view aside>.row>div {
        width: 100%;
        border-left: none;
        margin: 0 !important;
    }

    .pack-view aside .sidebar__license-formats {
        padding: 0;
        min-height: 0;
    }
}

.popover {
    display: inline-block;
}

.popover .popover-container {
    position: relative;
    display: inline-block;
}

.popover .popover-content {
    position: absolute;
    z-index: 1;
    top: 50px;
    right: 0;
    display: none;
    overflow: visible;
    width: 228px;
    margin: 0;
    padding: 8px;
    border: 1px solid #e3e9ed;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 0 60px rgba(14, 42, 71, .25);
    animation: popover .2s ease-in-out;
}

.popover .popover-content:before {
    border-right: 10px solid transparent;
    border-bottom: 10px solid #999;
    border-left: 10px solid transparent;
    right: .97em;
}

.popover .popover-content:after,
.popover .popover-content:before {
    font-size: 1.4em;
    display: block;
    width: 0;
    height: 0;
    content: "";
    pointer-events: none;
    position: absolute;
    top: -.45em;
}

.popover .popover-content:after {
    border-right: 12px solid transparent;
    border-bottom: 12px solid #fff;
    border-left: 12px solid transparent;
    right: .9em;
}

.search-result {
    position: relative;
    margin-bottom: 20px;
    margin-top: 20px;
}

.tooltip {
    position: relative;
}

.tooltip:hover .tooltip__trigger--always:after,
.tooltip:hover .tooltip__trigger--always~.tooltip__content {
    display: block;
}

.tooltip__content {
    position: absolute;
    display: none;
    color: #fff;
    font-size: 13px;
    text-align: center;
    white-space: nowrap;
    z-index: 333;
}

.tooltip__content .content {
    padding: 6px 12px;
    border-radius: 3px;
    background-color: #1d262d;
    box-shadow: 0 2px 60px rgba(29, 38, 45, .2);
}

.tooltip__content .content p {
    margin-bottom: 4px;
}

.tooltip__trigger {
    position: relative;
}

.tooltip__trigger:after {
    display: none;
    content: "";
    z-index: 323;
}

.tooltip--box .tooltip__content {
    width: 300px;
    color: #1d262d;
    white-space: inherit;
}

.tooltip--box .tooltip__content .content {
    background-color: #fff;
}

.tooltip--left .tooltip__content {
    top: 50%;
    transform: translateY(-50%);
}

.tooltip--left .tooltip__content {
    right: 100%;
    padding-right: 10px;
}

.tooltip--left .tooltip__trigger:after {
    position: absolute;
    top: 50%;
    right: 101%;
    height: 0;
    width: 0;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #1d262d;
    border-top: 6px solid transparent;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0 4px 0 0;
}

.tooltip--bottom-right .tooltip__content,
.tooltip--bottom .tooltip__content {
    top: 100%;
    padding: 10px 0 0;
}

.tooltip--bottom .tooltip__trigger:after {
    position: absolute;
    top: 100%;
    left: 50%;
    height: 0;
    width: 0;
    border-bottom: 6px solid #1d262d;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
    transform: translate(-50%);
    margin: 6px 0 0;
}

.tooltip--bottom .tooltip__content {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
}

.tooltip--bottom-right .tooltip__content {
    right: 0;
}

.author .username {
    font-weight: 400;
    color: #0b2239;
    display: block;
}

.author .username span {
    background-image: linear-gradient(135deg, rgb(251, 93, 95) 0%, rgb(244, 2, 6) 100%);
    -webkit-box-shadow: 0 2px 5px 0 rgba(251, 66, 97, .51);
    box-shadow: 0 2px 5px 0 rgba(251, 66, 97, .51);
    color: #fff;
    padding: 0px 8px;
    border-radius: 18px;
    margin-left: 10px;
    line-height: 10px;
    font-size: 12px;
    font-weight: 700;
}
.author .resources {
    font-size: 13px;
    line-height: 15px;
    color: #5f7d95;
    display: block;
}

.author a:hover .resources {
    text-decoration: underline;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(1turn);
    }
}

@keyframes popover {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bj-button--square {
    padding: 0px !important;
}

.indexhot {
    font-weight: 400;
    position: absolute;
    left: 0%;
    bottom: 18px;
    height: 23px;
    line-height: 23px;
    font-size: 14px;
    padding: 0 10px;
    border-radius: 0px 0px 3px 3px;
    color: #666;
    z-index: 1000;
    width: 100%;
    font-weight: 400;
    white-space: nowrap;
    font-style: normal;
    background-color: transparent;
}

.indexhotff {
    background-color: transparent;
}

.btnwh {
    min-width: 340px;
    min-height: 90px;
    color: #000;
    background-color: #fff;
    padding: 10px 10px 30px 10px;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.302), 0 1px 3px 1px rgba(60, 64, 67, 0.149);
    position: relative;
    float: right;
    background: linear-gradient(120deg, #fff 30%, #f0f0f0 38%, #f0f0f0 40%, #fff 48%);
    margin-top: 10px;
    background-size: 200% 100%;
    background-position: 100% 0;
    animation: load89234 3s infinite;
}

.btnwh:hover {
    background-color: #fff;
}

.btnwh span {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(90deg, #ffa54d, #f07bc5 50%, #43aeff);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.Carousel_sections__sCXLY .Carousel_content__ARUFX {
    grid-area: content;
    background-color: #f9f9fb;
    border-radius: 8px;
    padding: 24px;
}

@media screen and (min-width:1024px) {
    .Carousel_sections__sCXLY .Carousel_content__ARUFX {
        flex: 1 0 100%;
    }
}

.ContentCards_wrapper__WUFYF {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
}

.ContentCards_wrapper__WUFYF .ContentCards_hero__s4CyF {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 48px;
    padding: 10px;
}

.ContentCards_wrapper__WUFYF .ContentCards_heading__T2upH {
    font-size: 20px;
    line-height: 1.07;
    font-weight: 700;
    margin-bottom: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

@media (min-width:768px) {
    .ContentCards_wrapper__WUFYF .ContentCards_heading__T2upH {
        font-size: 24px;
        line-height: 1.05;
    }
}

.ContentCards_wrapper__WUFYF .ContentCards_text__3l8AY {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    width: 100%;
}

.ContentCards_wrapper__WUFYF .ContentCards_lead__qEqZ4 {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.11;
    display: flex;
}

@media (min-width:768px) {
    .ContentCards_wrapper__WUFYF .ContentCards_lead__qEqZ4 {
        font-size: 24px;
        font-size: 1.5rem;
        line-height: 1.08;
    }
}

.ContentCards_wrapper__WUFYF .ContentCards_card__tqLD8 {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.ContentCards_wrapper__WUFYF .ContentCards_card__tqLD8 .ContentCards_card-heading__vZgFc {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.11;
    font-weight: 700;
}

@media (min-width:768px) {
    .ContentCards_wrapper__WUFYF .ContentCards_card__tqLD8 .ContentCards_card-heading__vZgFc {
        font-size: 24px;
        font-size: 1.5rem;
        line-height: 1.08;
    }
}

.ContentCards_wrapper__WUFYF .ContentCards_card__tqLD8 .ContentCards_card-body__EvlbW {
    position: relative;
    font-size: 14px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: #187547;
    max-width: 300px;
}

@media screen and (min-width:768px) {
    .ContentCards_wrapper__WUFYF .ContentCards_hero__s4CyF {
        flex-direction: column;
        width: 688px;
        padding-top: 0px;
    }

    .ContentCards_wrapper__WUFYF .ContentCards_card__tqLD8 {
        gap: 16px;
    }

    .ContentCards_wrapper__WUFYF .ContentCards_card__tqLD8 .ContentCards_card-heading__vZgFc {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 1.11;
    }
}

@media screen and (min-width:1024px) {
    .ContentCards_wrapper__WUFYF .ContentCards_hero__s4CyF {
        width: 100%;
    }

    .ContentCards_wrapper__WUFYF .ContentCards_card__tqLD8 .ContentCards_card-heading__vZgFc {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 1.11;
    }
}

.ContentCards_wrapper__WUFYF .ContentCards_card__tqLD8 .ContentCards_card-heading__vZgFc {
    position: relative;
    font-size: 18px;
    font-size: 18px;
    line-height: 1.08;
    color: #187547;
}

@media screen and (min-width:1254px) {
    .ContentCards_wrapper__WUFYF .ContentCards_hero__s4CyF {
        flex-direction: row;
        padding-top: 0px;
    }

    .ContentCards_wrapper__WUFYF .ContentCards_card__tqLD8 {
        width: 48%;
    }
}

.mdui-list-item60::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -40px;
    width: .367em;
    height: .72em;
    border-style: solid;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-color: #187547;
    margin-left: 20px;
}

.linebg {
    height: 2px;
    width: 100%;
    background: linear-gradient(-90deg, #ff9100 0%, #f10366 50%, #6173ff 100%);
}

figure {
    display: grid;
    grid-gap: 1ex;
    gap: 1ex;
    margin: 0 auto;
    text-align: center;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
    font-size: 20px;
    width: 100%;
}

picture {
    display: inline-block;
    width: 90px;
    height: 90px;
    margin: 0 auto;
}

picture>img {
    display: block;
    width: 100%;
    height: 100%;
}


.uploader {
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: default;
    padding: 0;
    margin: 10px 0px;
    -moz-box-shadow: 0px 0px 5px #ddd;
    -webkit-box-shadow: 0px 0px 5px #ddd;
    box-shadow: 0px 0px 5px #ddd;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

.filename {
    float: left;
    display: inline-block;
    font-size: 14px;
    outline: 0 none;
    height: 38px;
    width: 216px;
    margin: 0;
    padding: 3px 8px;
    overflow: hidden;
    cursor: default;
    border: 1px solid;
    border-right: 0;
    color: #ca8407;
    text-shadow: 1px 1px 0px #fff;
    border-color: #ffb229;
    -moz-box-shadow: 0px 0px 1px #fff inset;
    -webkit-box-shadow: 0px 0px 1px #fff inset;
    box-shadow: 0px 0px 1px #fff inset;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0px;
}

.button {
    float: left;
    height: 38px;
    display: inline-block;
    outline: 0 none;
    padding: 8px 6px;
    margin: 0;
    cursor: pointer;
    border: 1px solid;
    font: bold 9pt/100% Arial, Helvetica, sans-serif;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    -moz-box-shadow: 0px 0px 1px #fff inset;
    -webkit-box-shadow: 0px 0px 1px #fff inset;
    box-shadow: 0px 0px 1px #fff inset;
}

.uploader input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    padding: 0;
    margin: 0;
    height: 30px;
    cursor: pointer;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
}

input[type=button]::-moz-focus-inner {
    padding: 0;
    border: 0 none;
    -moz-box-sizing: content-box;
}

input[type=button]::-webkit-focus-inner {
    padding: 0;
    border: 0 none;
    -webkit-box-sizing: content-box;
}

input[type=text]::-moz-focus-inner {
    padding: 0;
    border: 0 none;
    -moz-box-sizing: content-box;
}

input[type=text]::-webkit-focus-inner {
    padding: 0;
    border: 0 none;
    -webkit-box-sizing: content-box;
}

.white .button {
    color: #fff;
    background: #ffb229;
    border-color: #ffb229;
    border-radius: 0px;
    min-width: 106px;
}

.white:hover .button {
    background: #f49d01;
}

.copy-link {
    border-bottom: 1px solid #ca840747;
    color: #ca8407;
}

.downmust {
    background: linear-gradient(90deg, #ffa54d, #f07bc5 50%, #43aeff);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.card {
    width: 420px;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    overflow: visible;
}

.card .item {
    border-radius: 7px;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.card .item::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-image: url('../svg/downloadicon.svg');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 2px;
    border-radius: 4px;
    background-color: #caf0d2;
}

.card .item--2::before,
.card .item--3::before,
.card .item--4::before,
.card .item--5::before,
.card .item--6::before {
    content: "";
    position: absolute;
    top: 5px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-image: url('../svg/member.svg');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 2px;
    border-radius: 4px;
    left: auto;
    background-color: transparent;
}

.item:hover {
    transform: scale(0.95);
    transition: all 0.3s;
}

.btnwh:hover {
    transform: scale(0.95);
    transition: all 0.3s;
    color: #000;
}

.item svg {
    width: 20px;
    height: 20px;
    margin-top: 10px;
}

.item--1 {
    background: #c7c7ff40;
}

.item--2 {
    background: #ffd8be40;
}

.item--3 {
    background: #a9ecbf40;
}

.item--4 {
    background: #f3bbe140;
}

.item--5 {
    background: #e03a3a20;
}

.item--6 {
    background: #4280ee20;
}

.quantity {
    font-size: 25px;
    font-weight: 700;
    margin-top: 3px;
}

.text {
    font-size: 12px;
    font-weight: 700;
    color: #595959 !important;
}


.showcopy {
    padding: 8px 8px 8px 24px;
    border-radius: 6px;
    width: calc(100% - 40px);
    margin: 10px 30px 50px;
border: 1px dashed #4caf4f8b !important;
background-color: transparent;
}

.vbox-overlay .showcopy{
    margin: 10px 30px;
}
.N4H2Ee {
    align-items: flex-start;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -moz-box-flex: auto;
    flex: auto;
}

.al13nc {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.nzYqoc {
    color: #d56e0c;
}

.al13nc+.PfcDvc {
    margin: 0 10px;
}

.PfcDvc {
    line-height: 1.25rem;
    font-size: .875rem;
    letter-spacing: .0142857143em;
    font-weight: 400;
    color: #3c4043;
    align-self: center;
    -moz-box-flex: auto;
    flex: auto;
}

.AuKbld {
    color: #349637;
}

.AuKbld strong {
    border-bottom: 1px solid #4caf4f8b !important
}

.copyhtml,.copyhtmlhtml {
    margin-left: 10px;
    cursor: pointer;
    font-weight: 500;
    color: #349637;
    padding: 4px 12px;
    border-radius: 30px;
    background-color: #eaf6eb;
    border: 1px dashed #9dd39f !important;
}
.copyhtmlhtml:hover{
    color: #e39601;
    background-color: #fff5ea;
    border: 1px dashed #ff9205 !important;
}
html-blob{
    line-height: 34px;
}
.copyhtmltitle {
    margin-left: 10px;
    cursor: pointer;
    font-weight: 500;
    color: #349637;
    padding: 8px 12px;
    border-radius: 30px;
    background-color: #eaf6eb;
    border: 1px dashed #9dd39f !important;
}
.copyhtmltitle:hover{
    color: #e39601;
    background-color: #fff5ea;
    border: 1px dashed #ff9205 !important;
}

.ZI49d strong {
    color: #167319;
}

@keyframes load89234 {
    100% {
        background-position: -100% 0;
    }
}


.YZDnHc {
    display: grid;
    min-width: 340px;
    text-align: center;
    background: #fff;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    grid-column-gap: 0;
    grid-row-gap: 0;
    max-width: 512px;
    margin: 0 auto 4px;
    padding: 16px;
}

.JE55mf {
    color: #3c4043;
    margin-right: 8px;
    text-decoration: line-through;
}

.NyZ7Je {
    font-weight: 700;
}

.hWZkrb,
.EMCU6e {
    font-size: 16px;
    letter-spacing: .1px;
    font-weight: 400;
    color: #202124;
    line-height: 20px;
    margin: 0 0 6px;
}

.V9PI1d,
.OWxtV {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .2px;
    line-height: 20px;
    color: #5f6368;
}

.EMCU6e,
.OWxtV {
    text-align: right;
}

@media all and (min-width:768px) {
    .JE55mf {
        margin-right: 12px;
    }

    .hWZkrb,
    .EMCU6e {
        font-size: 18px;
        line-height: 24px;
        font-weight: 400;
        color: #3c4043;
    }
}

.YZDnHc b {
    background: linear-gradient(90deg, #ffa54d, #f07bc5 50%, #43aeff);
    background-clip: border-box;
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.YZDnHc:hover {
    background-color: #ff7e46;
}

.YZDnHc:hover b {
    background: linear-gradient(90deg, #fff, #fff 50%, #fff);
    background-clip: border-box;
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.YZDnHc:hover div {
    color: #fff;
}

.downloadsvg {
    box-shadow: none;

}

.introjs-overlay {
    position: absolute;
    z-index: 999999;
    background-color: #000;
    opacity: 0;
    background: -moz-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0.4) 0, rgba(0, 0, 0, 0.9) 100%);
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(0, 0, 0, 0.4)), color-stop(100%, rgba(0, 0, 0, 0.9)));
    background: -webkit-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0.4) 0, rgba(0, 0, 0, 0.9) 100%);
    background: -o-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0.4) 0, rgba(0, 0, 0, 0.9) 100%);
    background: -ms-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0.4) 0, rgba(0, 0, 0, 0.9) 100%);
    background: radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0.4) 0, rgba(0, 0, 0, 0.9) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#66000000', endColorstr='#e6000000', GradientType=1);
    -ms-filter: "alpha(opacity=50)";
    filter: alpha(opacity=50);
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out
}

.introjs-fixParent {
    z-index: auto !important;
    opacity: 1.0 !important
}

.introjs-showElement,
tr.introjs-showElement>td,
tr.introjs-showElement>th {
    z-index: 9999999 !important
}

.introjs-relativePosition,
tr.introjs-showElement>td,
tr.introjs-showElement>th {
    position: relative
}

.introjs-helperLayer {
    position: absolute;
    z-index: 9999998;
    background-color: #FFF;
    background-color: rgba(255, 255, 255, .9);
    border: 1px solid #777;
    border: 1px solid rgba(0, 0, 0, .5);
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .4);
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out
}

.introjs-helperNumberLayer {
    position: absolute;
    top: -16px;
    left: -16px;
    z-index: 9999999999 !important;
    padding: 2px;
    font-size: 13px;
    font-weight: bold;
    color: white;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .3);
    background: #ff3019;
    background: -webkit-linear-gradient(top, #ff3019 0, #cf0404 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ff3019), color-stop(100%, #cf0404));
    background: -moz-linear-gradient(top, #ff3019 0, #cf0404 100%);
    background: -ms-linear-gradient(top, #ff3019 0, #cf0404 100%);
    background: -o-linear-gradient(top, #ff3019 0, #cf0404 100%);
    background: linear-gradient(to bottom, #ff3019 0, #cf0404 100%);
    width: 20px;
    height: 20px;
    line-height: 20px;
    border: 3px solid white;
    border-radius: 50%;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3019', endColorstr='#cf0404', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.Shadow(direction=135, strength=2, color=ff0000);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .4)
}

.introjs-arrow {
    border: 5px solid white;
    content: '';
    position: absolute
}

.introjs-arrow.top {
    top: -10px;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: white;
    border-left-color: transparent
}

.introjs-arrow.top-right {
    top: -10px;
    right: 10px;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: white;
    border-left-color: transparent
}

.introjs-arrow.top-middle {
    top: -10px;
    left: 50%;
    margin-left: -5px;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: white;
    border-left-color: transparent
}

.introjs-arrow.right {
    right: -10px;
    top: 10px;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: white
}

.introjs-arrow.bottom {
    bottom: -10px;
    border-top-color: white;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent
}

.introjs-arrow.left {
    left: -10px;
    top: 10px;
    border-top-color: transparent;
    border-right-color: white;
    border-bottom-color: transparent;
    border-left-color: transparent
}

.introjs-tooltip {
    position: absolute;
    padding: 10px;
    background-color: white;
    min-width: 200px;
    max-width: 300px;
    border-radius: 3px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, .4);
    -webkit-transition: opacity .1s ease-out;
    -moz-transition: opacity .1s ease-out;
    -ms-transition: opacity .1s ease-out;
    -o-transition: opacity .1s ease-out;
    transition: opacity .1s ease-out
}

.introjs-tooltipbuttons {
    text-align: right
}

.introjs-button {
    position: relative;
    overflow: visible;
    display: inline-block;
    padding: .3em .8em;
    border: 1px solid #d4d4d4;
    margin: 0;
    text-decoration: none;
    text-shadow: 1px 1px 0 #fff;
    font: 11px/normal sans-serif;
    color: #333;
    white-space: nowrap;
    cursor: pointer;
    outline: 0;
    background-color: #ececec;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f4f4f4), to(#ececec));
    background-image: -moz-linear-gradient(#f4f4f4, #ececec);
    background-image: -o-linear-gradient(#f4f4f4, #ececec);
    background-image: linear-gradient(#f4f4f4, #ececec);
    -webkit-background-clip: padding;
    -moz-background-clip: padding;
    -o-background-clip: padding-box;
    -webkit-border-radius: .2em;
    -moz-border-radius: .2em;
    border-radius: .2em;
    zoom: 1;
    *display: inline;
    margin-top: 10px
}

.introjs-button:hover {
    border-color: #bcbcbc;
    text-decoration: none;
    box-shadow: 0 1px 1px #e3e3e3
}

.introjs-button:focus,
.introjs-button:active {
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ececec), to(#f4f4f4));
    background-image: -moz-linear-gradient(#ececec, #f4f4f4);
    background-image: -o-linear-gradient(#ececec, #f4f4f4);
    background-image: linear-gradient(#ececec, #f4f4f4)
}

.introjs-button::-moz-focus-inner {
    padding: 0;
    border: 0
}

.introjs-skipbutton {
    margin-right: 5px;
    color: #7a7a7a
}

.introjs-prevbutton {
    -webkit-border-radius: .2em 0 0 .2em;
    -moz-border-radius: .2em 0 0 .2em;
    border-radius: .2em 0 0 .2em;
    border-right: 0
}

.introjs-nextbutton {
    -webkit-border-radius: 0 .2em .2em 0;
    -moz-border-radius: 0 .2em .2em 0;
    border-radius: 0 .2em .2em 0
}

.introjs-disabled,
.introjs-disabled:hover,
.introjs-disabled:focus {
    color: #9a9a9a;
    border-color: #d4d4d4;
    box-shadow: none;
    cursor: default;
    background-color: #f4f4f4;
    background-image: none;
    text-decoration: none
}

.introjs-bullets {
    text-align: center
}

.introjs-bullets ul {
    clear: both;
    margin: 15px auto 0;
    padding: 0;
    display: inline-block
}

.introjs-bullets ul li {
    list-style: none;
    float: left;
    margin: 0 2px
}

.introjs-bullets ul li a {
    display: block;
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    text-decoration: none
}

.introjs-bullets ul li a:hover {
    background: #999
}

.introjs-bullets ul li a.active {
    background: #999
}

.introjsFloatingElement {
    position: absolute;
    height: 0;
    width: 0;
    left: 50%;
    top: 50%
}


.buybuy {
    background-image: linear-gradient(to right, #0ba360, #3cba92, #30dd8a, #2bb673);
    box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
    border-radius: 0px 8px 0px 0px;
}

.ribbon-wrapper-9 {
    width: 108px;
    height: 108px;
    overflow: hidden;
    position: absolute;
    top: -6px;
    z-index: 1111;
    right: -6px;
}

.ribbon-9 {
    font: bold 14px Sans-Serif;
    line-height: 18px;
    color: #e9ea7b;
    text-align: center;
    text-transform: uppercase;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    position: relative;
    padding: 7px 0;
    left: -4px;
    top: 26px;
    width: 150px;
    background-color: #6daaab;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    box-shadow: -3px 5px 6px -5px rgba(0, 0, 0, 0.5);
    outline: 1px dotted #E5E82C;
    outline-offset: -4px;
    background-image: radial-gradient(circle farthest-side, #FF1C1A, #BF0B00);
    text-shadow: 2px 1px 0px rgba(0, 0, 0, 0.2);
}

.ribbon-9:before,
.ribbon-9:after {
    content: "";
    border-top: 4px solid #BF0B00;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    position: absolute;
    bottom: -4px;
}

.ribbon-9:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 4px solid #BF0B00;
    border-right: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-top: 4px solid #BF0B00;
}

.ribbon-9:after {
    content: "";
    position: absolute;
    right: 7px;
    top: 100%;
    z-index: -1;
    border-left: 4px solid transparent;
    border-right: 4px solid #BF0B00;
    border-bottom: 4px solid transparent;
    border-top: 4px solid #BF0B00;
}


.buybuy::after {
    position: absolute;
    right: 99%;
    height: 0;
    width: 0;
    border-bottom: 12px solid transparent;
    border-right: 12px solid #0ba360;
    border-top: 12px solid transparent;
    margin: 0 4px 0 0;
    content: "";
    z-index: 323;
}


.VfPpkd-Bz112c-LgbsSe {
    font-size: 24px;
    width: 48px;
    height: 48px;
    padding: 12px;
}

.VfPpkd-Bz112c-LgbsSe .VfPpkd-Bz112c-J1Ukfc-LhBDec {
    max-height: 48px;
    max-width: 48px;
}

.VfPpkd-Bz112c-LgbsSe:disabled {
    color: rgba(0, 0, 0, .38);
    color: var(--mdc-theme-text-disabled-on-light, rgba(0, 0, 0, .38));
}

.VfPpkd-Bz112c-LgbsSe {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    border: none;
    outline: none;
    background-color: transparent;
    fill: currentColor;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    -webkit-user-select: none;
    z-index: 0;
    overflow: visible;
}

@media screen and (forced-colors:active) {
    .VfPpkd-Bz112c-LgbsSe:not(.VfPpkd-ksKsZd-mWPk3d):focus .VfPpkd-Bz112c-J1Ukfc-LhBDec {
        display: block;
    }
}

.VfPpkd-Bz112c-LgbsSe:disabled {
    cursor: default;
    pointer-events: none;
}

.VfPpkd-Bz112c-J1Ukfc-LhBDec {
    pointer-events: none;
    border: 2px solid transparent;
    border-radius: 6px;
    box-sizing: content-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    display: none;
}

@media screen and (forced-colors:active) {
    .VfPpkd-Bz112c-J1Ukfc-LhBDec {
        border-color: CanvasText;
    }
}

.VfPpkd-Bz112c-J1Ukfc-LhBDec::after {
    content: "";
    border: 2px solid transparent;
    border-radius: 8px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: calc(100% + 4px);
    width: calc(100% + 4px);
}

@media screen and (forced-colors:active) {
    .VfPpkd-Bz112c-J1Ukfc-LhBDec::after {
        border-color: CanvasText;
    }
}

.VfPpkd-Bz112c-LgbsSe {
    --mdc-ripple-fg-size: 0;
    --mdc-ripple-left: 0;
    --mdc-ripple-top: 0;
    --mdc-ripple-fg-scale: 1;
    --mdc-ripple-fg-translate-end: 0;
    --mdc-ripple-fg-translate-start: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    will-change: transform, opacity;
}

.VfPpkd-Bz112c-LgbsSe .VfPpkd-Bz112c-Jh9lGc::before,
.VfPpkd-Bz112c-LgbsSe .VfPpkd-Bz112c-Jh9lGc::after {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: "";
}

.VfPpkd-Bz112c-LgbsSe .VfPpkd-Bz112c-Jh9lGc::before {
    transition: opacity 15ms linear, background-color 15ms linear;
    z-index: 1;
    z-index: var(--mdc-ripple-z-index, 1);
}

.VfPpkd-Bz112c-LgbsSe .VfPpkd-Bz112c-Jh9lGc::after {
    z-index: 0;
    z-index: var(--mdc-ripple-z-index, 0);
}

.VfPpkd-Bz112c-LgbsSe .VfPpkd-Bz112c-Jh9lGc::before,
.VfPpkd-Bz112c-LgbsSe .VfPpkd-Bz112c-Jh9lGc::after {
    top: calc(50% - 50%);
    left: calc(50% - 50%);
    width: 100%;
    height: 100%;
}

.VfPpkd-Bz112c-LgbsSe .VfPpkd-Bz112c-Jh9lGc::before,
.VfPpkd-Bz112c-LgbsSe .VfPpkd-Bz112c-Jh9lGc::after {
    background-color: #000;
    background-color: var(--mdc-ripple-color, #000);
}

.VfPpkd-Bz112c-LgbsSe:hover .VfPpkd-Bz112c-Jh9lGc::before {
    opacity: .04;
    opacity: var(--mdc-ripple-hover-opacity, 0.04);
}

.VfPpkd-Bz112c-LgbsSe:not(.VfPpkd-ksKsZd-mWPk3d):focus .VfPpkd-Bz112c-Jh9lGc::before {
    transition-duration: 75ms;
    opacity: .12;
    opacity: var(--mdc-ripple-focus-opacity, 0.12);
}

.VfPpkd-Bz112c-LgbsSe:not(.VfPpkd-ksKsZd-mWPk3d) .VfPpkd-Bz112c-Jh9lGc::after {
    transition: opacity 150ms linear;
}

.VfPpkd-Bz112c-LgbsSe:not(.VfPpkd-ksKsZd-mWPk3d):active .VfPpkd-Bz112c-Jh9lGc::after {
    transition-duration: 75ms;
    opacity: .12;
    opacity: var(--mdc-ripple-press-opacity, 0.12);
}

.VfPpkd-Bz112c-LgbsSe .VfPpkd-Bz112c-Jh9lGc {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.yHy1rc {
    z-index: 0;
}

.yHy1rc .VfPpkd-Bz112c-Jh9lGc::before,
.yHy1rc .VfPpkd-Bz112c-Jh9lGc::after {
    z-index: -1;
}

.yHy1rc:disabled {
    color: rgba(60, 64, 67, .38);
    color: var(--gm-iconbutton-disabled-ink-color, rgba(60, 64, 67, .38));
}

.DiOXab:not(.VfPpkd-ksKsZd-mWPk3d):focus .VfPpkd-Bz112c-J1Ukfc-LhBDec {
    pointer-events: none;
    border: 2px solid #185abc;
    border-radius: 6px;
    box-sizing: content-box;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    display: inline-block;
    position: absolute;
}

@media screen and (forced-colors:active) {
    .DiOXab:not(.VfPpkd-ksKsZd-mWPk3d):focus .VfPpkd-Bz112c-J1Ukfc-LhBDec {
        border-color: CanvasText;
    }
}

.DiOXab:not(.VfPpkd-ksKsZd-mWPk3d):focus .VfPpkd-Bz112c-J1Ukfc-LhBDec::after {
    content: "";
    border: 2px solid #e8f0fe;
    border-radius: 8px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: calc(100% + 4px);
    width: calc(100% + 4px);
}

@media screen and (forced-colors:active) {
    .DiOXab:not(.VfPpkd-ksKsZd-mWPk3d):focus .VfPpkd-Bz112c-J1Ukfc-LhBDec::after {
        border-color: CanvasText;
    }
}

@media all and (-ms-high-contrast:none),
(-ms-high-contrast:active) {
    .DiOXab:not(.VfPpkd-ksKsZd-mWPk3d):focus .VfPpkd-Bz112c-J1Ukfc-LhBDec {
        display: none;
    }
}

.NMm5M {
    fill: currentColor;
    flex-shrink: 0;
}

.FVxGQ {
    align-items: center;
    display: flex;
    flex-direction: row;
}

.SGKHgf {
    display: flex;
    margin-top: 4px;
}

.eqVmXb {
    display: inline;
    outline: none;
}

.Ic5C {
    display: flex;
    justify-content: center;
}

.O73Dw {
    padding: 0;
}

.O73Dw .oJ2IIc {
    align-items: center;
    display: flex;
    justify-content: center;
}

.google-material-icons {
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/*! CSS Used from: Embedded */
.ebrG6d {
    column-gap: 32px;
    display: grid;
    grid-column-end: 4;
    grid-column-start: 1;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: 100%;
    padding: 0 8px;
    width: 100%;
}

.rbHGud {
    align-items: center;
    color: #5f6368;
    display: flex;
    flex-direction: row;
    font-size: 1rem;
    font-weight: 400;
    grid-column-start: 2;
    -grid-column-align: flex-end;
    justify-self: flex-end;
    line-height: 1.172rem;
    padding: 0 16px;
}

.EqjhYe {
    align-items: center;
    display: flex;
    flex-direction: row;
    margin-left: 16px;
}

.HPSDXc {
    margin-right: 2px;
}

.pBzYke {
    align-items: center;
    color: #5f6368;
    display: flex;
    flex-direction: row;
    font-size: 1rem;
    font-weight: 400;
    height: 100%;
    line-height: 1.5rem;
    width: 100%;
}

.WT0qsd {
    border-radius: 50%;
    flex-shrink: 0;
    height: 40px;
    min-width: 0;
    padding: 0;
    text-align: center;
    width: 40px;
}

.W7Dtjd {
    fill: currentColor;
    height: 24px;
    margin-top: 8px;
    width: 24px;
}

.downloadsvg svg {
    max-height: 400px;
    min-height: 300px;
    min-width: 300px;
    max-width: 400px;
}


.customizer {
    max-height: 100%;
    padding: 10px 0px;
    border-radius: 80px;
    max-width: 450px;
    margin: 40px auto 20px;
    display: inline-block;
}

@media screen and (max-width:645px) {
    .ebrG6d {
        grid-auto-flow: row;
        grid-template-columns: auto;
        grid-template-rows: auto;
    }
    html-blob{
        line-height: 32px;
    }
    .rbHGud {
        grid-column-start: auto;
        -grid-column-align: auto;
        justify-self: auto;
        padding: 0;
    }

    .downloadsvg svg {
        max-height: 280px;
        min-height: 240px;
        min-width: 240px;
        max-width: 280px;
    }
}

.qMk5Bf {
    color: #80868b;
    margin-left: 4px;
}


.downloadsvg svg path.selected {
    stroke: #666;
    stroke-dasharray: 20;
    stroke-width: 5;
}

.downloadsvg svg path {
    cursor: pointer;
}




.color-tool {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-flex;
    display: flex;
}

.color-tool li {
    width: 30px;
    height: 30px;
    display: block;
    margin: 5px;
    border-radius: 40px;
}

.color-1 {
    background: #333;
    color: #333;
}

.color-2 {
    background: #f0f0f0;
    color: #f0f0f0;
}

.color-3 {
    background: #c0c3d5;
    color: #c0c3d5;
}

.color-4 {
    background: #5FA1E0;
    color: #5FA1E0;
}

.color-5 {
    background: #c1d5c0;
    color: #c1d5c0;
}

.color-6 {
    background: #47AE73;
    color: #47AE73;
}

.color-7 {
    background: #eae7c4;
    color: #eae7c4;
}

.color-8 {
    background: #FB6964;
    color: #FB6964;
}

.drag-element {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    border: 2px solid #fff !important;
}

.drag-element:hover {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
    box-shadow: 0 0px 4px 0 rgba(15, 22, 41, 0.49);
    border: 2px solid #fff !important;
}

.drag-element:active {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.drop {
    width: 20px;
    height: 20px;
    top: 5px;
    left: 5px;
    position: absolute;
    border-radius: 80% 0 55% 50% / 55% 0 80% 50%;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
}

.drop-helper-1,
.drop-helper-2,
.drop-helper-3,
.drop-helper-4 {
    position: absolute;
    display: block;
    width: 6px;
    height: 6px;
    bottom: -10px;
    left: 50%;
    margin-left: -3px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
}

.drop-helper-3,
.drop-helper-4 {
    width: 10px;
    height: 10px;
    margin-left: -5px;
}

.drop-helper-1 {
    -webkit-transform-origin: -33px 50%;
    transform-origin: -33px 50%;
}

.drop-helper-2 {
    -webkit-transform-origin: 45px 50%;
    transform-origin: 45px 50%;
}

.drop-helper-3 {
    -webkit-transform-origin: -18px 50%;
    transform-origin: -18px 50%;
}

.drop-helper-4 {
    -webkit-transform-origin: 30px 50%;
    transform-origin: 30px 50%;
}

.reset-button {
    border-radius: 80px;
    background: none;
    padding: 0;
    margin: 0;
    border: none;
    width: 30px;
    height: 30px;
    margin: 0;
    color: transparent;
    font-size: 0px;
    background: url(../svg/drop_reset.svg) no-repeat center center;
    background-size: 100%;
}
@media screen and (max-width: 1119px) {
    .customizer {
        top: 0;
        width: 100%;
        height: auto;
        padding: 10px 0;
        -webkit-transform: none;
        transform: none;
        border-radius: 0;
        margin: 10px;
    }
}
@media screen and (max-width: 50em) {

    .color-tool {
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-justify-content: center;
        justify-content: center;
    }

    .color-tool li {
        margin: 3px;
    }
}

.downbutton {
    text-align: center;
    background-color: #4fb78326;
    border-radius: 12px;
    -webkit-box-shadow: 0 4px 14px 0 rgb(83 83 83 / 17%);
    box-shadow: 0 4px 14px 0 rgb(83 83 83 / 17%);
    border: solid 1px #4fb78347;
}
@media (min-width: 1120px) {
    .downbutton {
        text-align: center;
        min-width: 320px;
    }
    .downbutton ul li{
        display: block !important;
    }
   }
.downbutton div {
    width: auto;
    margin: 30px auto;
    display: inline-block;
}

.downbutton div button {
    border-radius: 40px;
    margin: 8px 4px;
}

.downbutton div button:hover {
    background: #4caf50 !important;
    color: #fff !important;
    box-shadow: inset 0 0 0 2px #4caf50 !important;
}



.colorpicker-mask {
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}

.colorpicker-base {
    position: inherit;
    z-index: 100;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 2px, rgba(0, 0, 0, 0.3) 0px 4px 8px;
}

.color-palette {
    /*width:200px;*/
    padding: 10px;
    background: #f9f9f9;
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start
}

.color-palette .color-palette-item {
    width: 10%;
    height: 20px;
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
}

.color-palette .color-palette-item:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

.colorpicker-pancel {
    padding: 9px;
    border-radius: 10px;
    background: rgb(255, 255, 255);
    box-sizing: initial;
    width: 225px;
}

.color-board {
    border-radius: 10px;
    width: 100%;
    padding-bottom: 58%;
    position: relative;
    overflow: hidden;
}

.color-board .color-pancel {
    border-radius: 10px;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}

.saturation-white {
    border-radius: 10px;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background: -webkit-linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}

.saturation-white .saturation-black {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background: -webkit-linear-gradient(to top, #000, rgba(0, 0, 0, 0));
    background: linear-gradient(to top, #000, rgba(0, 0, 0, 0));
}

.saturation-white .pickerBtn {
    position: absolute;
    top: 0%;
    left: 100%;
    cursor: default;
}

.saturation-white .pickerBtn .pickerBtn-in {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    box-shadow: rgb(255, 255, 255) 0px 0px 0px 1px inset;
    transform: translate(-15px, -15px);
}

.color_hue {
    padding: 0 16px 12px;
}

.color_hue .flexbox-fix {
    display: flex;
}

.color_hue .flexbox-fix1 {
    align-items: center;
    height: 30px;
    padding-top: 2px;
}

.color_hue .flexbox-fix1 .huering_l {
    width: 32px;
}

.color_hue .flexbox-fix1 .huering_l .color_showBox {
    width: 16px;
    height: 16px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background-image: url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAABQAAD/4QMqaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzE0MiA3OS4xNjA5MjQsIDIwMTcvMDcvMTMtMDE6MDY6MzkgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QTlBNkE1N0M0RUI3MTFFOEEwMDhBODQzMzk2OUYxMzMiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QTlBNkE1N0Q0RUI3MTFFOEEwMDhBODQzMzk2OUYxMzMiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBOUE2QTU3QTRFQjcxMUU4QTAwOEE4NDMzOTY5RjEzMyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBOUE2QTU3QjRFQjcxMUU4QTAwOEE4NDMzOTY5RjEzMyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pv/uAA5BZG9iZQBkwAAAAAH/2wCEAAICAgICAgICAgIDAgICAwQDAgIDBAUEBAQEBAUGBQUFBQUFBgYHBwgHBwYJCQoKCQkMDAwMDAwMDAwMDAwMDAwBAwMDBQQFCQYGCQ0LCQsNDw4ODg4PDwwMDAwMDw8MDAwMDAwPDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDP/AABEIAAgACAMBEQACEQEDEQH/xABVAAEAAAAAAAAAAAAAAAAAAAAJAQEAAAAAAAAAAAAAAAAAAAAAEAAAAwkAAAAAAAAAAAAAAAAREhMAQWGTFIQVZTcRAQAAAAAAAAAAAAAAAAAAAAD/2gAMAwEAAhEDEQA/AGW6posFdK1UkpUYiLgYP//Z);
}

.color_showBox .colorpicker-showColor {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0px 1px inset;
    z-index: 2;
}

.color_showBox .cs_mask {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background: url(&quot;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAMUlEQVQ4T2NkYGAQYcAP3uCTZhw1gGGYhAGBZIA/nYDCgBDAm9BGDWAAJyRCgLaBCAAgXwixzAS0pgAAAABJRU5ErkJggg==&quot;) left center;
}

.color_hue .flexbox-fix1 .huering_r {
    -webkit-box-flex: 1;
    flex: 1 1 0%;
}

.hueringBox {
    height: 10px;
    position: relative;
}

.hueringBox .hueringBox-in {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}

.hueringBox .hue-horizontal {
    border-radius: 40px;
    padding: 0px 2px;
    position: relative;
    height: 100%;
    background: linear-gradient(to right, #f00 0%, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);
    background: -webkit-linear-gradient(to right, #f00 0%, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);
}

.hueringBox .hue-vertical {
    background: linear-gradient(to top, #f00 0%, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);
    background: -webkit-linear-gradient(to top, #f00 0%, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);
}

.hue-horizontal .colorBar-color-picker {
    position: absolute;
    left: 0%;
}

.hue-horizontal .colorBar-color-picker .colorBar-colorhue-cur {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    transform: translate(-6px, -1px);
    background-color: rgb(248, 248, 248);
    box-shadow: rgba(0, 0, 0, 0.37) 0px 1px 4px 0px;
}

.flexbox-fix2 {
    height: 20px;
    align-items: center;
}

.transparencyBox {
    padding: 0px 2px;
    position: relative;
    height: 10px;
    width: 100%;
    background-image: url(data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAABQAAD/4QMqaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzE0MiA3OS4xNjA5MjQsIDIwMTcvMDcvMTMtMDE6MDY6MzkgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QTlBNkE1N0M0RUI3MTFFOEEwMDhBODQzMzk2OUYxMzMiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QTlBNkE1N0Q0RUI3MTFFOEEwMDhBODQzMzk2OUYxMzMiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBOUE2QTU3QTRFQjcxMUU4QTAwOEE4NDMzOTY5RjEzMyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBOUE2QTU3QjRFQjcxMUU4QTAwOEE4NDMzOTY5RjEzMyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pv/uAA5BZG9iZQBkwAAAAAH/2wCEAAICAgICAgICAgIDAgICAwQDAgIDBAUEBAQEBAUGBQUFBQUFBgYHBwgHBwYJCQoKCQkMDAwMDAwMDAwMDAwMDAwBAwMDBQQFCQYGCQ0LCQsNDw4ODg4PDwwMDAwMDw8MDAwMDAwPDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDP/AABEIAAgACAMBEQACEQEDEQH/xABVAAEAAAAAAAAAAAAAAAAAAAAJAQEAAAAAAAAAAAAAAAAAAAAAEAAAAwkAAAAAAAAAAAAAAAAREhMAQWGTFIQVZTcRAQAAAAAAAAAAAAAAAAAAAAD/2gAMAwEAAhEDEQA/AGW6posFdK1UkpUYiLgYP//Z);
}

.transparencyBox .transparency-color {
    border-radius: 40px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #000);
}

.transparencyBox .colorBar-opacity-picker {
    position: absolute;
    left: 100%;
}

.transparencyBox .colorBar-opacity-picker .transparency-cur {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    transform: translate(-6px, -1px);
    background-color: rgb(248, 248, 248);
    box-shadow: rgba(0, 0, 0, 0.37) 0px 1px 4px 0px;
}

.flexbox-fix3 {
    padding-top: 10px;
}

.flexbox-fix3 .colorpicker-inputWrap {
    -webkit-box-flex: 1;
    flex: 1 1 0%;
    display: flex;
    margin-left: -6px;
}

.flexbox-fix3 .colorpicker-showModeBtn {
    width: 32px;
    text-align: right;
    position: relative;
}

.flexbox-fix3 .colorpicker-showModeBtn .showModeBtn-in {
    margin-right: -4px;
    cursor: pointer;
    position: relative;
}

.colorpicker-hexBox {
    padding-left: 6px;
    width: 100%;
}

.colorpicker-hexBox .colorpicker-hexBox-in {
    position: relative;
}

.colorpicker-hexBox .colorpicker-hexInput {
    font-size: 11px;
    color: rgb(51, 51, 51);
    width: 100%;
    border-radius: 20px;
    border: none;
    box-shadow: rgba(76, 175, 80, 0.27) 0px 0px 0px 2px inset;
    height: 28px;
    text-align: center;
}

.colorpicker-hexBox .colorpicker-hexInput:hover {
    box-shadow: rgb(76, 175, 80) 0px 0px 0px 2px inset;
}

.colorpicker-hexBox .colorpicker-hexSpan {
    text-transform: uppercase;
    font-size: 11px;
    line-height: 11px;
    color: rgb(150, 150, 150);
    text-align: center;
    display: block;
    margin-top: 7px;
}

.colorpicker-rgbBox {
    padding-left: 6px;
    width: 100%;
}

.colorpicker-rgbBox .colorpicker-rgbBox-in {
    position: relative;
}

.colorpicker-rgbBox .colorpicker-hexInput {
    font-size: 11px;
    color: rgb(51, 51, 51);
    width: 100%;
    border-radius: 2px;
    border: none;
    box-shadow: rgb(218, 218, 218) 0px 0px 0px 1px inset;
    height: 21px;
    text-align: center;
}

.colorpicker-rgbBox .colorpicker-hexSpan {
    text-transform: uppercase;
    font-size: 11px;
    line-height: 11px;
    color: rgb(150, 150, 150);
    text-align: center;
    display: block;
    margin-top: 7px;
}

.color-tool li .picker {
    border: 2px solid #fff !important;
    width: 100%;
    height: 100%;
    border-radius: 80px;
    cursor: pointer;
    position: relative;
}

.color-tool li .picker:hover {
    box-shadow: 0 0px 4px 0 rgba(15, 22, 41, 0.49);
    border: 2px solid #fff !important;
}



.unfinished-bubble-container.hidden {
    display: none;
}

.unfinished-bubble-container {
    position: absolute;
    z-index: 3;
    display: block;
    top: 52px;
    animation: unfinished-bubble-show 4s infinite;
}

.unfinished-bubble-container .unfinished-bubble {
    background-image: linear-gradient(135deg, rgb(251, 93, 95) 0%, rgb(244, 2, 6) 100%);
    box-shadow: 0 2px 5px 0 rgba(113, 113, 113, .51);
    border-radius: 4px;
    height: 32px;
    position: relative;
    display: inline-block;
    text-align: left;
    left: 10px;
    line-height: 32px;
    top: 7px;
    padding: 8px 12px;
}

.unfinished-bubble-container .unfinished-bubble .unfinished-bubble-content {
    margin: 0;
    padding: 0;
    opacity: .9;
    font-size: 14px;
    color: #fff;
    text-align: center;
    margin-left: 5px;
    margin-right: 5px;
}

.unfinished-bubble-container .unfinished-bubble-tip {
    width: 20px;
    height: 7.6px;
    background: url(../svg/up.png) center center no-repeat;
    background-size: cover;
    position: absolute;
    left: 162px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    top: 39px;
}

@keyframes unfinished-bubble-show {
    0% {
        opacity: 0;
        transform: scale(0) translate(0, 0);
    }

    20% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }

    35% {
        transform: scale(1) translate(0, -10px);
    }

    50% {
        transform: scale(1) translate(0, 0);
    }

    65% {
        transform: scale(1) translate(0, -10px);
    }

    80% {
        transform: scale(1) translate(0, 0);
        opacity: 1;
    }

    95% {
        transform: scale(1.1) translate(0, -10px);
        opacity: 0;
    }

    100% {
        transform: scale(0) translate(0, 0);
        opacity: 0;
    }
}





button {
    background-color: #4ad295;
}

button:hover {
    background-color: #2bc48a;
}

button:active {
    background-color: #00af80;
}

button {
    appearance: none;
    background-color: #2bc48a;
    border: none;
    border-radius: 0px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    line-height: 1;
    padding: .75em 1em;
    text-decoration: none;
    user-select: none;
    vertical-align: middle;
    white-space: nowrap;
    outline: none;
    border-radius: 3px;
}

button:focus,
button:hover {
    color: #fff;
}

button:disabled {
    cursor: not-allowed;
    opacity: .5;
}

button span {
    vertical-align: top;
}

.ribbon-wrapper-9 {
    width: 108px;
    height: 108px;
    overflow: hidden;
    position: absolute;
    top: -6px;
    z-index: 1111;
    right: -6px;
}

.ribbon-9 {
    font: bold 14px Sans-Serif;
    line-height: 18px;
    color: #e9ea7b;
    text-align: center;
    text-transform: uppercase;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    position: relative;
    padding: 7px 0;
    left: -4px;
    top: 26px;
    width: 150px;
    background-color: #6daaab;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    box-shadow: -3px 5px 6px -5px rgba(0, 0, 0, 0.5);
    outline: 1px dotted #E5E82C;
    outline-offset: -4px;
    background-image: radial-gradient(circle farthest-side, #FF1C1A, #BF0B00);
    text-shadow: 2px 1px 0px rgba(0, 0, 0, 0.2);
}

.ribbon-9:before,
.ribbon-9:after {
    content: "";
    border-top: 4px solid #BF0B00;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    position: absolute;
    bottom: -4px;
}

.ribbon-9:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 4px solid #BF0B00;
    border-right: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-top: 4px solid #BF0B00;
}

.ribbon-9:after {
    content: "";
    position: absolute;
    right: 7px;
    top: 100%;
    z-index: -1;
    border-left: 4px solid transparent;
    border-right: 4px solid #BF0B00;
    border-bottom: 4px solid transparent;
    border-top: 4px solid #BF0B00;
}

/*! CSS Used from: Embedded */
.VfPpkd-LgbsSe {
    position: relative;
    display: -webkit-inline-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: 64px;
    border: none;
    outline: none;
    line-height: inherit;
    -webkit-user-select: none;
    -webkit-appearance: none;
    overflow: visible;
    vertical-align: middle;
    background: transparent;
}

.VfPpkd-LgbsSe::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.VfPpkd-LgbsSe:active {
    outline: none;
}

.VfPpkd-LgbsSe:hover {
    cursor: pointer;
}

.VfPpkd-LgbsSe:disabled {
    cursor: default;
    pointer-events: none;
}

.VfPpkd-LgbsSe .VfPpkd-vQzf8d {
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
}

.VfPpkd-LgbsSe .VfPpkd-J1Ukfc-LhBDec {
    pointer-events: none;
    border: 2px solid transparent;
    border-radius: 6px;
    box-sizing: content-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: calc(100% + 4px);
    width: calc(100% + 4px);
    display: none;
}

@media screen and (forced-colors:active) {
    .VfPpkd-LgbsSe .VfPpkd-J1Ukfc-LhBDec {
        border-color: CanvasText;
    }
}

.VfPpkd-LgbsSe .VfPpkd-J1Ukfc-LhBDec::after {
    content: "";
    border: 2px solid transparent;
    border-radius: 8px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: calc(100% + 4px);
    width: calc(100% + 4px);
}

@media screen and (forced-colors:active) {
    .VfPpkd-LgbsSe .VfPpkd-J1Ukfc-LhBDec::after {
        border-color: CanvasText;
    }
}

@media screen and (forced-colors:active) {
    .VfPpkd-LgbsSe:not(.VfPpkd-ksKsZd-mWPk3d):focus .VfPpkd-J1Ukfc-LhBDec {
        display: block;
    }
}

.VfPpkd-LgbsSe {
    -webkit-font-smoothing: antialiased;
    text-decoration: none;
    padding: 0 8px 0 8px;
}

.VfPpkd-LgbsSe-OWXEXe-k8QpJ {
    transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 16px 0 16px;
}

.VfPpkd-LgbsSe {
    --mdc-ripple-fg-size: 0;
    --mdc-ripple-left: 0;
    --mdc-ripple-top: 0;
    --mdc-ripple-fg-scale: 1;
    --mdc-ripple-fg-translate-end: 0;
    --mdc-ripple-fg-translate-start: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    will-change: transform, opacity;
}

.VfPpkd-LgbsSe .VfPpkd-Jh9lGc::before,
.VfPpkd-LgbsSe .VfPpkd-Jh9lGc::after {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: "";
}

.VfPpkd-LgbsSe .VfPpkd-Jh9lGc::before {
    transition: opacity 15ms linear, background-color 15ms linear;
    z-index: 1;
}

.VfPpkd-LgbsSe .VfPpkd-Jh9lGc::after {
    z-index: 0;
}

.VfPpkd-LgbsSe .VfPpkd-Jh9lGc::before,
.VfPpkd-LgbsSe .VfPpkd-Jh9lGc::after {
    top: calc(50% - 100%);
    left: calc(50% - 100%);
    width: 200%;
    height: 200%;
}

.VfPpkd-Jh9lGc {
    position: absolute;
    box-sizing: content-box;
    overflow: hidden;
    z-index: 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.VfPpkd-LgbsSe {
    font-size: .875rem;
    letter-spacing: .0892857143em;
    font-weight: 400;
    text-transform: uppercase;
    height: 36px;
    border-radius: 4px;
}

.VfPpkd-LgbsSe:disabled {
    color: rgba(0, 0, 0, .38);
}

.VfPpkd-LgbsSe .VfPpkd-Jh9lGc::before,
.VfPpkd-LgbsSe .VfPpkd-Jh9lGc::after {
    background-color: #6200ee;
}

.VfPpkd-LgbsSe:hover .VfPpkd-Jh9lGc::before {
    opacity: .04;
}

.VfPpkd-LgbsSe:not(.VfPpkd-ksKsZd-mWPk3d):focus .VfPpkd-Jh9lGc::before {
    transition-duration: 75ms;
    opacity: .12;
}

.VfPpkd-LgbsSe:not(.VfPpkd-ksKsZd-mWPk3d) .VfPpkd-Jh9lGc::after {
    transition: opacity 150ms linear;
}

.VfPpkd-LgbsSe:not(.VfPpkd-ksKsZd-mWPk3d):active .VfPpkd-Jh9lGc::after {
    transition-duration: 75ms;
    opacity: .12;
}

.VfPpkd-LgbsSe .VfPpkd-Jh9lGc {
    border-radius: 4px;
}

.VfPpkd-LgbsSe-OWXEXe-k8QpJ {
    font-size: .875rem;
    letter-spacing: .0892857143em;
    font-weight: 400;
    text-transform: uppercase;
    height: 36px;
    border-radius: 4px;
}

.VfPpkd-LgbsSe-OWXEXe-k8QpJ:disabled {
    background-color: rgba(0, 0, 0, .12);
}

.VfPpkd-LgbsSe-OWXEXe-k8QpJ:disabled {
    color: rgba(0, 0, 0, .38);
}

.VfPpkd-LgbsSe-OWXEXe-k8QpJ .VfPpkd-Jh9lGc::before,
.VfPpkd-LgbsSe-OWXEXe-k8QpJ .VfPpkd-Jh9lGc::after {
    background-color: #fff;
}

.VfPpkd-LgbsSe-OWXEXe-k8QpJ:hover .VfPpkd-Jh9lGc::before {
    opacity: .08;
}

.VfPpkd-LgbsSe-OWXEXe-k8QpJ:not(.VfPpkd-ksKsZd-mWPk3d):focus .VfPpkd-Jh9lGc::before {
    transition-duration: 75ms;
    opacity: .24;
}

.VfPpkd-LgbsSe-OWXEXe-k8QpJ:not(.VfPpkd-ksKsZd-mWPk3d) .VfPpkd-Jh9lGc::after {
    transition: opacity 150ms linear;
}

.VfPpkd-LgbsSe-OWXEXe-k8QpJ:not(.VfPpkd-ksKsZd-mWPk3d):active .VfPpkd-Jh9lGc::after {
    transition-duration: 75ms;
    opacity: .24;
}

.VfPpkd-LgbsSe-OWXEXe-k8QpJ .VfPpkd-Jh9lGc {
    border-radius: 40px;
}

.nCP5yc {
    font-size: 16px;
    letter-spacing: .0107142857em;
    font-weight: 400;
    text-transform: none;
    transition: border 280ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    background-color: #4caf50;
    border-radius: 40px;
}

.nCP5yc .VfPpkd-Jh9lGc {
    height: 100%;
    position: absolute;
    overflow: hidden;
    width: 100%;
    z-index: 0;
}

.nCP5yc:disabled {
    background-color: rgba(60, 64, 67, .12);
    background-color: var(--gm-fillbutton-disabled-container-color, rgba(60, 64, 67, .12));
    color: rgba(60, 64, 67, .38);
    color: var(--gm-fillbutton-disabled-ink-color, rgba(60, 64, 67, .38));
}

.nCP5yc .VfPpkd-Jh9lGc::before,
.nCP5yc .VfPpkd-Jh9lGc::after {
    background-color: #202124;
    background-color: var(--gm-fillbutton-state-color, #202124);
}

.nCP5yc:hover .VfPpkd-Jh9lGc::before {
    opacity: .16;
    opacity: var(--mdc-ripple-hover-opacity, 0.16);
}

.nCP5yc:not(.VfPpkd-ksKsZd-mWPk3d):focus .VfPpkd-Jh9lGc::before {
    transition-duration: 75ms;
    opacity: .24;
    opacity: var(--mdc-ripple-focus-opacity, 0.24);
}

.nCP5yc:not(.VfPpkd-ksKsZd-mWPk3d) .VfPpkd-Jh9lGc::after {
    transition: opacity 150ms linear;
}

.nCP5yc:not(.VfPpkd-ksKsZd-mWPk3d):active .VfPpkd-Jh9lGc::after {
    transition-duration: 75ms;
    opacity: .2;
    opacity: var(--mdc-ripple-press-opacity, 0.2);
}

.nCP5yc:hover {
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
    box-shadow: 0 1px 2px 0 var(--gm-fillbutton-keyshadow-color, rgba(60, 64, 67, .3)), 0 1px 3px 1px var(--gm-fillbutton-ambientshadow-color, rgba(60, 64, 67, .15));
}

.nCP5yc:active {
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 2px 6px 2px rgba(60, 64, 67, .15);
    box-shadow: 0 1px 2px 0 var(--gm-fillbutton-keyshadow-color, rgba(60, 64, 67, .3)), 0 2px 6px 2px var(--gm-fillbutton-ambientshadow-color, rgba(60, 64, 67, .15));
}

.DuMIQc {
    padding: 0 24px 0 24px;
}

.qfvgSe:not(.VfPpkd-ksKsZd-mWPk3d):focus .VfPpkd-J1Ukfc-LhBDec {
    pointer-events: none;
    border: 2px solid #185abc;
    border-radius: 6px;
    box-sizing: content-box;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: calc(100% + 4px);
    width: calc(100% + 4px);
    display: inline-block;
    position: absolute;
}

@media screen and (forced-colors:active) {
    .qfvgSe:not(.VfPpkd-ksKsZd-mWPk3d):focus .VfPpkd-J1Ukfc-LhBDec {
        border-color: CanvasText;
    }
}

.qfvgSe:not(.VfPpkd-ksKsZd-mWPk3d):focus .VfPpkd-J1Ukfc-LhBDec::after {
    content: "";
    border: 2px solid #e8f0fe;
    border-radius: 8px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: calc(100% + 4px);
    width: calc(100% + 4px);
}

@media screen and (forced-colors:active) {
    .qfvgSe:not(.VfPpkd-ksKsZd-mWPk3d):focus .VfPpkd-J1Ukfc-LhBDec::after {
        border-color: CanvasText;
    }
}

@media all and (-ms-high-contrast:none),
(-ms-high-contrast:active) {
    .qfvgSe:not(.VfPpkd-ksKsZd-mWPk3d):focus .VfPpkd-J1Ukfc-LhBDec {
        display: none;
    }
}

.VfPpkd-BFbNVe-bF1uUb {
    position: absolute;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    opacity: var(--mdc-elevation-overlay-opacity, 0);
    transition: opacity 280ms cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fff;
    background-color: var(--mdc-elevation-overlay-color, #fff);
}

.NZp2ef {
    background-color: #e8eaed;
}

.DPvwYc {
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-rendering: optimizeLegibility;
    text-transform: none;
    display: inline-block;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: "liga" 1;
    -webkit-font-smoothing: antialiased;
}

.VfPpkd-WsjYwc {
    border-radius: 4px;
    border-radius: var(--mdc-shape-medium, 4px);
    background-color: #fff;
    background-color: var(--mdc-theme-surface, #fff);
    position: relative;
    box-shadow: 0 2px 1px -1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 1px 3px 0 rgba(0, 0, 0, .12);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.VfPpkd-WsjYwc .VfPpkd-BFbNVe-bF1uUb {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.VfPpkd-WsjYwc::after {
    border-radius: 4px;
    border-radius: var(--mdc-shape-medium, 4px);
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid transparent;
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

@media screen and (forced-colors:active) {
    .VfPpkd-WsjYwc::after {
        border-color: CanvasText;
    }
}

.VfPpkd-WsjYwc-OWXEXe-INsAgc {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .2), 0 0 0 0 rgba(0, 0, 0, .14), 0 0 0 0 rgba(0, 0, 0, .12);
    border-width: 1px;
    border-style: solid;
    border-color: #e0e0e0;
}

.VfPpkd-WsjYwc-OWXEXe-INsAgc::after {
    border: none;
}

.KC1dQ {
    border-radius: 8px;
    background-color: #fff;
    border-width: 0;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.KC1dQ .VfPpkd-BFbNVe-bF1uUb {
    opacity: 0;
}

.Usd1Ac {
    border-radius: 0px 8px 8px 0px;
    background-color: #fff;
    box-shadow: none;
}

.Usd1Ac .VfPpkd-BFbNVe-bF1uUb {
    opacity: 0;
}

.staJ7e {
    margin: 4px 8px 8px 8px;
}

.staJ7e.spYkpc {
    margin: 0px;
}

@media screen and (min-width:841px) {
    .staJ7e {
        margin: 8px;
    }

    .staJ7e.spYkpc {
        margin: 0px;
    }
}

.Y653g {
    display: inline-block;
    flex: 1 0 auto;
    overflow: hidden;
    width: 320px;
}

@media screen and (min-width:841px) {
    .Y653g {
        width: 360px;
    }
}

.staJ7e.spYkpc .Y653g {
    width: 320px;
}

@media screen and (min-width:841px) {
    .staJ7e.spYkpc .Y653g {
        width: 380px;
    }
}

.staJ7e.spYkpc.G1TrEc .Y653g {
    background-color: white;
    border-radius: 4px;
    margin: 4px;
    width: 100%;
}

@media screen and (min-width:841px) {
    .staJ7e.spYkpc.G1TrEc .Y653g {
        width: calc(100% - 8px);
    }
}

.CzTxdd {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    width: 100%;
    text-align: center;
    word-break: break-word;
}

.staJ7e.spYkpc.G1TrEc .CzTxdd {
    padding: 0 16px;
}

@media screen and (min-width:841px) {
    .staJ7e.spYkpc .CzTxdd {
        min-height: 276px;
    }

    .staJ7e.spYkpc.G1TrEc .CzTxdd {
        min-height: 272px;
    }
}

.f9Afmf {
    letter-spacing: .00625em;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: #202124;
    font-size: .875rem;
    margin: 10px 0 0 0;
    height: 20px;
}

@media screen and (min-width:841px) {
    .f9Afmf {
        letter-spacing: .01785714em;
        font-size: .875rem;
        font-weight: 400;
        line-height: 1.25rem;
    }
}

.YgStxe {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5rem;
    color: #3c4043;
    margin: 16px 0 0 0;
}

@media screen and (min-width:841px) {
    .YgStxe {
        font-size: 1.375rem;
        font-weight: 700;
        letter-spacing: 0;
        line-height: 1.75rem;
        margin: 48px 0 0 0;
    }
}

.Qnu87d {
    font-size: 2.75rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 3.25rem;
    color: #3c4043;
    font-size: 28px;
    line-height: 36px;
    margin: 28px 0 4px 0;
}

@media screen and (min-width:841px) {
    .Qnu87d {
        font-size: 32px;
        line-height: 56px;
        margin: 52px 0 8px 0;
        color: #999;
    }
}

.Qnu87d.CMqFSd {
    margin: 4px 0 4px 0;
}

@media screen and (min-width:841px) {
    .Qnu87d.CMqFSd {
        margin: 4px 0 4px 0;
    }
}

.staJ7e.spYkpc .Qnu87d {
    font-size: 2.75rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 3.25rem;
    font-size: 1.375rem;
    line-height: 1.27272727;
    margin: 57px 0 0 0;
}

.staJ7e.spYkpc .Qnu87d.CMqFSd {
    margin: 4px 0 0;
    font-size: 16px;
    color: #4caf50;
}

@media screen and (min-width:841px) {
    .staJ7e.spYkpc .Qnu87d {
        font-size: 2rem;
        font-weight: 400;
        letter-spacing: 0;
        line-height: 2.5rem;
        margin: 50px 0 0 0;
    }
}

.staJ7e.spYkpc.G1TrEc .Qnu87d,
.staJ7e.spYkpc .f9Afmf+.YgStxe {
    margin: 18px 0 0 0;
}

.staJ7e.spYkpc.G1TrEc .Qnu87d.CMqFSd {
    margin: 4px 0 0 0;
    font-size: 16px;
    color: #4caf50;
}

.CMqFSd strong {
    color: #4caf50;
    font-size: 32px;
}

.LjifFb strong {
    color: #555;
    font-size: 16px;
}

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

    .staJ7e.spYkpc.G1TrEc .Qnu87d,
    .staJ7e.spYkpc .f9Afmf+.YgStxe {
        margin: 16px 0 0 0;
    }
}

.SWbnjc {
    margin-bottom: 4px;
    margin-top: 31px;
    min-height: 42px;
    min-width: 107px;
}

@media screen and (min-width:841px) {
    .SWbnjc {
        margin: 26px 0 0;
        min-width: 148px;
    }
}

@media screen and (max-width:1700px) {
    .closehide {display: none !important;
    }
}


.staJ7e.spYkpc .SWbnjc {
    margin: 26px 0 0 0;
    min-width: 107px;
}
nav.primary-navigation ul li span{
    display: none;
}
nav.primary-navigation ul li div{
    margin: 0px;
position: absolute;
right: 0px;
height: 100%;
margin-top: -12px;
width: 44px;
border-radius: 0px 3px 3px 0px;
display: none;
  }

@media screen and (min-width:1120px) {
    nav.primary-navigation ul li {
        min-width: 130px;
    }
    nav.primary-navigation ul li div{
        display: inline-block;
    }
}
@media screen and (min-width:841px) {
    .staJ7e.spYkpc .SWbnjc {
        margin: 28px 0 0 0;
        min-width: 183px;
    }
    nav.primary-navigation ul li {
        min-width: 176px;
    }
    nav.primary-navigation ul li span{
        display: inline-block;
    }
}

.hxvKGd {
    border-top: 1px solid rgba(0, 0, 0, .12);
    display: block;
    padding: 16px 16px 0px 24px;
    margin-top: 30px;
}

.staJ7e.spYkpc .hxvKGd {
    color: #3c4043;
    display: block;
    margin: 0 20px;
    padding: 17px 20px 32px 3px;
}

@media screen and (min-width:841px) {
    .hxvKGd {
        display: block;
    }

    .staJ7e.spYkpc .hxvKGd {
        margin: 30px 10px;
        padding: 20px 6px 24px 14px;
    }
}

.staJ7e.spYkpc.G1TrEc .hxvKGd {
    display: block;
    margin: 0 16px;
    padding: 17px 20px 29px 3px;
}

@media screen and (min-width:841px) {
    .staJ7e.spYkpc.G1TrEc .hxvKGd {
        margin: 30px 10px;
        padding: 20px 6px 24px 14px;
    }
}

.e4sqP {
    font-size: 14px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
    margin-bottom: 8px;
}

@media screen and (min-width:841px) {
    .e4sqP {
        font-size: 14px;
        font-weight: 400;
        line-height: 30px;
        margin-bottom: 12px;
    }
}

.staJ7e.spYkpc .e4sqP {
    font-size: 2.75rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 3.25rem;
    font-size: 1rem;
    line-height: 1.25;
    margin: 0 0 13px 0;
}

@media screen and (min-width:841px) {
    .staJ7e.spYkpc .e4sqP {
        letter-spacing: .01785714em;
        font-size: .875rem;
        font-weight: 400;
        line-height: 1.25rem;
        font-weight: 400;
        margin: 0 0 7px 0;
    }
}

.OWqi7c {
    font-size: 14px;
    font-weight: 400;
    line-height: 32px;
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0 0 0 12px;
}

@media screen and (min-width:841px) {
    .OWqi7c {
        font-size: 14px;
        font-weight: 400;
        line-height: 30px;
    }
}

.staJ7e.spYkpc .OWqi7c {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5rem;
    font-size: .875rem;
    line-height: 1.42857143;
    padding: 0 0 0 12px;
}

@media screen and (min-width:841px) {
    .staJ7e.spYkpc .OWqi7c {
        letter-spacing: .01785714em;
        font-size: .875rem;
        font-weight: 400;
        line-height: 1.25rem;
        font-weight: 400;
        padding: 0 0 0 8px;
    }
}

.rzIFlb {
    display: flex;
}

.staJ7e.spYkpc .rzIFlb {
    align-items: start;
    text-align: start;
}

.rzIFlb::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    background-image: url('../svg/icon-check.svg');
    background-repeat: no-repeat;
}

.nFN6r {
    color: #1a73e8;
    vertical-align: center;
    height: 6px;
    width: 6px;
    padding-bottom: 18px;
}

.staJ7e.spYkpc .nFN6r {
    font-size: 1.25rem;
    height: 1.25rem;
    margin: 6px 0;
    padding: 0;
    width: 1.25rem;
}

@media screen and (min-width:841px) {
    .staJ7e.spYkpc .nFN6r {
        font-size: 1rem;
        height: 1rem;
        margin: 4px 0;
        width: 1rem;
    }
}

.ZI49d {
    padding-left: 24px;
    text-align: left;
}

.staJ7e.spYkpc .ZI49d {
    padding: 6px 0 6px 32px;
    margin: 0 auto;
}

@media screen and (min-width:841px) {
    .staJ7e.spYkpc .ZI49d {
        padding: 4px 0 4px 36px;
        margin: 0;
    }
}

.LjifFb {
    letter-spacing: .01785714em;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.25rem;
    font-weight: 400;
    color: #777;
    margin: 0 10px;
    padding: 16px 0 2px;
    width: 100%;
}

@media screen and (min-width:841px) {
    .LjifFb {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        min-height: 40px;
    }
}

.GIVpZb {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    justify-content: flex-end;
}

.nFN6r img {
    height: 20px;
    width: 20px;
    max-width: 20px;
}

.link-heading {
    width: calc(100% - 40px);
    font-weight: 700;
}

.link-heading span {
    font-weight: 400;
    font-size: 14px;
    padding: 3px 12px;
    background-color: #f1f1f1;
    border-radius: 80px;
    color: #666;
}

.ContentCards_wrapper__WUFYF textarea {
    overflow-x: hidden;
    width: 100%;
    border: 1px solid #aeaeae !important;
    border-radius: 4px;
    min-height: 90px;
    box-shadow: 0 0 4px rgba(0, 0, 0, .19);
    padding: 10px;
    color: #777;
    font-size: 15px;
    line-height: 26px;
}

.ContentCards_wrapper__WUFYF textarea:hover {
    border: 1px solid #000 !important;
    color: #000;
    font-weight: 400;
}



nav.primary-navigation {
    margin: 0 auto;
    display: block;
    padding: 20px 4px 40px;
    text-align: center;
    font-size: 16px;
    border-radius: 8px;
}

nav.primary-navigation ul li {
    margin: 10px 5px;
    display: inline-block;
    position: relative;
    text-decoration: none;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    color: #fff;
    line-height: 33px;
    font-weight: 700;
    min-width: 110px;
}
nav.primary-navigation li a {
    color: black;
}

nav.primary-navigation li a:hover {
    color: #3ca0e7;
}

nav.primary-navigation li:hover {
    cursor: pointer;
    background-image: radial-gradient(circle farthest-side, #FF1C1A, #BF0B00);
    box-shadow: 0 4px 15px 0 rgb(240, 165, 165);
}

nav.primary-navigation ul li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    padding-left: 0;
    left: 0;
    display: none;
    background: white;
}

nav.primary-navigation ul li:hover>ul,
nav.primary-navigation ul li ul:hover {
    visibility: visible;
    opacity: 1;
    display: block;
    min-width: 100%;
    text-align: left;
    padding: 0px;
    margin-top: 10px;
    border-radius: 13px;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 111;
}

nav.primary-navigation ul li ul li {
    clear: both;
    width: 100%;
    text-align: left;
    border-style: none;
    box-shadow: none;
    padding: 12px 12px 12px 12px !important;
    border-radius: 0px;
    color: #127d16;
    border-radius: 0px !important;
    font-weight: 400;
    line-height: 26px;
}
nav.primary-navigation ul li ul li:first-child{
    border-radius: 13px 13px 0px 0px !important;
}
nav.primary-navigation ul li ul li:last-child{
    border-radius: 0px 0px 13px 13px !important;
}
nav.primary-navigation ul li ul li:hover {
    background-color: #4eb78347 !important;
    box-shadow: inset 0 0 0 2px #4caf5000;
    color: #14804a !important;
    background-image: radial-gradient(circle farthest-side, #4eb78347, #4eb78347);
}

nav.primary-navigation ul li ul li a:hover {
    color: #008b71;
    transition: all 0.3s ease;
}

.buymemberw::before {
    content: "";
    background-image: url('../svg/downloadsvg.svg');
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: 0px;
    left: auto;
    position: absolute;
    right: 0px;
    height: 100%;
    margin-top: -12px;
    width: 44px;
    background-color: #4eb783;
    border-radius: 0px 3px 3px 0px;
    background-position-x: 13px;

}

.buymember,
.buymemberw {
    padding: 12px 40px 12px 12px !important;
}

.buymember::before {
    content: "";
    position: absolute;
    top: 13px;
    right: 16px;
    width: 24px;
    height: 24px;
    background-image: url('../svg/member.svg');
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: 2px;
    border-radius: 4px;
    left: auto;
    background-color: transparent;
}

.buymemberw:hover::before {
    background-color: #3ea472;
}
.buybuyb{
    background-color: #ffb229;border-radius: 40px;
}
.buybuyb:hover{
    background-color: #fca120 !important;
}

.addtoshare{
    position: absolute;
right: 0px;
padding: 8px 18px 6px;
border-radius: 3px;
font-weight: 700;
cursor: pointer;
z-index: 111;
color: #374957 !important;
-webkit-box-shadow:inset 0 0 0 2px #cfd9e0;
box-shadow: inset 0 0 0 2px #cfd9e0;
top: 12px;
transition: all 0.3s ease;
-webkit-box-shadow:0 1px 4px 0 rgba(15, 22, 41, 0.12);
box-shadow: 0 1px 4px 0 rgba(15, 22, 41, 0.12);
border:1px solid #cfd9e0 !important;
}

.addtolove{
    position: absolute;
right: 120px;
background-image: radial-gradient(circle farthest-side, #FF1C1A, #BF0B00);
color: #fff;
padding: 8px 18px;
-webkit-box-shadow: 0 1px 4px 0 rgba(15, 22, 41, 0.25);
box-shadow: 0 1px 4px 0 rgba(15, 22, 41, 0.25);
border-radius: 3px;
font-weight: 700;
cursor: pointer;
min-width: 78px;
z-index: 111;
top: 12px;
transition: all 0.3s ease;
}
.maintitle{
    margin: 0 auto;
    text-align: center;
}
.showdownloadopen .maintitle{ margin: 0 auto 0 0;text-align: left;}
@media (max-width:768px) {
    .addtolove{
        min-width: auto;
    }

    .maintitle160{
        max-width: 160px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        display: inline-block;
    }
}
.addtolove.unavailable{
    background-image: radial-gradient(circle farthest-side, #4EB783, #0CAE44);
}
.addtolove.unavailable .addloveicon{display: none !important;}
.addtolove.unavailable .iconunavailable{display: inline-block !important;}

.addtolove:hover{
    background-image: radial-gradient(circle farthest-side, #00B50B, #208C02);
}
.addtoshare:hover{
    border:1px solid #4caf50 !important;
    color: #f00 !important;
}

.selecticon{display: none;}

.add-remove{background-color:#fff;border: 1px dashed #50b3ea !important;}


.add-remove .selectico{
    display: none;
}
.add-remove .selecticon{ display:inline-block;
}

@media (max-width:768px) {
    .nav.primary-navigation ul li {
        min-width: 130px !important;
    }
    .listtitle{display: none;}
    .addtoshare{padding: 4px 18px;top: 16px;border-radius: 20px;}
    .addtolove{padding: 5px 18px;border-radius: 20px;right: 64px;top: 16px;}
    .addtolove .showlovetitle,.addtoshare .showsharetitle{display: none;}
    .nav.primary-navigation ul li ul {
        transform: translate(-42px, 0px) !important;
    }
}

.btn-hover {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    cursor: pointer;
    margin: 20px;
    height: 55px;
    text-align:center;
    border: none;
    background-size: 300% 100%;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:focus {
    outline: none;
}

.btn-hover.color-4 {
    background-image: linear-gradient(to right, #4eb783, #4eb783);
  }


  nav.primary-navigation ul li div{
    margin: 0px;
position: absolute;
right: 0px;
height: 100%;
margin-top: -12px;
width: 44px;
border-radius: 0px 3px 3px 0px;
  }

  nav.primary-navigation ul li div svg{
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    margin-top: 18px;
  }

  .showlayer{
    padding: 10px 0px 70px;
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    margin-top: 50px;
    margin-bottom: 50px;
}
