@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap');

:root {
    --light-blue: #263952;
    --dark-blue: rgb(45, 64, 89);
    --red: rgb(226, 62, 87);
    --amber: rgb(222, 113, 29);
    --white: #fff;
    --grey: #777;
    --offwhite: #f5f5f5;
    --sidebar-width: 250px;
    --black: #0f0f0f;
    --green: #0d860d;
}

* {
    font-family: 'Poppins', sans-serif;;
    margin: 0;
    padding: 0;
}

body {
    overflow: hidden;
    background: var(--offwhite);
}

#top-nav {
    position: sticky;
    top: 0;
    z-index: 1;
    color: var(--offwhite);
    margin-bottom: 1em;
    background: var(--dark-blue);
    padding: .5rem 1rem;
}

.account-dropdown {
    padding: 0;
}

.account-dropdown a, .logout {
    display: block;
    padding: 0.5rem !important;
}

.account-dropdown a:hover, .logout:hover {
    background: var(--offwhite);
    color: var(--black);
}

#dashboard-content {
    padding: .5rem;
}

#dashboard-navigation {
    background: var(--white);
    position: sticky;
    top: 0;
    max-height: 100vh;
    overflow-y: auto;
    width: 250px;
    /*padding: 1em;*/
    z-index: 1;
    /*background: inherit;*/
    border-right: 1px solid #eee;
    color: var(--dark-blue);
    transition: 0.5s;
    transition-property: left;
}

.dashboard-links {
    padding: .5em;
}

.shop-name {
    background: var(--light-blue); /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, var(--light-blue), var(--dark-blue)); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, var(--light-blue), var(--dark-blue));
    border: 1px solid #eee;
    padding: .5rem;
    min-height: 80px;
    color: var(--offwhite);
}

.shop-name p {
    margin: 0;
}

.navigation-header {
    color: var(--dark-blue) !important;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.dashboard-nav-links {
    padding: 1em 0;
}

.dashboard-nav-links:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.dashboard-nav-links a {
    font-size: .9rem;
    display: block;
    padding: .5em;
    color: var(--grey);
}

.dashboard-nav-links a:hover {
    color: var(--dark-blue);
    text-decoration: none;
}

#page-content {
    max-height: 100vh;
    overflow: auto;
}

.menu-bars {
    cursor: pointer;
}

.amplify-button {
    display: inline-block;
    text-decoration: none;
    padding: 5px 20px;
    font-size: .8rem;
    border: 2px solid var(--offwhite);
    border-radius: 3px;
    transition: .9s ease-in-out;
}

.amplify-button:hover {
    text-decoration: none;
}

.bg-red {
    background: var(--white);
    color: var(--red);
    border-color: var(--red);
}

.bg-red:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.bg-white {
    background: var(--white);
    color: var(--grey);
}

.bg-success {
    background: var(--green);
    color: var(--offwhite);
    border-color: var(--green);
}

.border-green {
    border: 2px solid var(--green);
    color: var(--green);
    border-radius: 7px;
}

.bg-success:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.bg-blue {
    background: var(--dark-blue);
    color: var(--offwhite);
    border-color: var(--light-blue);
}

.bg-blue:hover {
    background: var(--offwhite);
    color: var(--light-blue);
    text-decoration: none;
}

.bg-orange {
    background: var(--amber);
    color: var(--offwhite);
    border-color: var(--amber);
}

.bg-orange:hover {
    background: var(--offwhite);
    color: var(--amber);
    text-decoration: none;
}

.bg-white:hover {
    background: var(--offwhite);
    color: var(--grey);
    text-decoration: none;
}

.amplify-card {
    border: 1px solid #eee;
    margin-bottom: 1em;
}

.amplify-card > div:not(:last-child) {
    border-bottom: 1px solid var(--offwhite);
}

.amplify-card-title {
    font-size: .85rem;
    font-weight: 600;
}

.amplify-card-header {
    flex-wrap: wrap;
    padding: 1em;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.amplify-card-body {
    padding: 1em;
    min-height: 80vh;
}

.amplify-card-body:not(.amplify-transparent) {
    background: var(--white);
}

.no-data-image {
    display: block;
    margin: 0 auto;
    text-align: center;
}

.no-data-text {
    font-weight: 600;
    font-size: .9rem;
    text-align: center;
}

.data-table {
    font-size: .8rem;
}

.logout {
    text-transform: capitalize;
    color: #999;
    width: 100%;
    text-align: left;
}

.logout:hover {
    color: var(--black);
    text-decoration: none;
}

.secure-icon {
    border-radius: 50%;
    border: 2px solid var(--offwhite);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 80px;
    width: 80px;
    color: var(--grey);
    height: 80px;
    margin: 0 auto;
}

.help-block {
    color: var(--red);
    margin: 0;
    font-size: .8rem;
}

.text-info {
    color: var(--blue) !important;
}

.text-warning {
    color: var(--orange) !important;
}

.text-success {
    color: var(--green) !important;
}

.text-red {
    color: var(--red) !important;
}

.text-amber {
    color: var(--amber) !important;
}

.profile-tab {
    padding: 1em;
    background: var(--white);
}

.summary {
    font-size: .725rem;
}

.profile-tab-links a {
    padding: .7rem .5rem;
    font-weight: bold;
    font-size: .9rem;
}

#profile-information {
    border: 1px solid var(--offwhite);
    padding: 0;
}

.profile-title {
    padding: 1em;
    color: var(--black);
    font-size: .9rem;
    font-weight: 600;
    margin: 0;
}

#profile-information section {
    padding: 1em;
}

#profile-information section:first-child {
    border-top: 1px solid var(--offwhite);
}

#profile-information section:not(:last-child) {
    border-bottom: 1px solid var(--offwhite);
    padding: 1em;
}

.profile-icon {
    font-size: 1.2rem;
    color: #999;
}

.profile-content {
    font-size: .9rem;
    color: #0f0f0f;
    font-weight: 600;
}

.uk-notification-message {
    border: 1px solid;
    background: var(--white);
    font-size: .9rem;
}

#modal_m_title {
    font-size: .9rem;
    color: var(--grey);
}

#modal_loader {
    align-items: center;
    justify-content: center;
    display: flex;
    min-height: inherit;
}

#userbusinesstypes-business_types label {
    margin: .8em 0;
}

.profile-tab {
    min-height: 70vh;
}

.settings-title {
    font-size: .9rem;
    color: var(--grey);
    display: flex;
    justify-content: space-between;
}

.settings-section {
    border: 1px solid var(--offwhite);
    margin-bottom: .5em;
    padding: .5em;
}

.business-type {
    font-size: .7rem;
    line-height: 1rem;
    padding: .5rem;
    border-radius: 1rem;
    background: var(--offwhite);
    margin-right: .5rem;
    margin-bottom: .5rem;
    display: inline-block;
    cursor: pointer;
    white-space: nowrap;
}

.business-type span {
    background: #c9c5c5;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    color: var(--white);
    text-align: center;
    line-height: 1rem;
}

.pagination {
    display: flex;
    justify-content: flex-end;
    list-style: none;
}

.pagination a, .pagination span {
    display: flex;
    margin-right: .5em;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 1.6rem;
    height: 1.6rem;
    color: var(--white);
    border-radius: 50%;
    border: 1px solid var(--dark-blue);
    background: var(--dark-blue);
}

.pagination span, .pagination li.active a {
    border-color: var(--grey);
    color: var(--grey);
    background: transparent;
}

.pagination a:hover {
    background: transparent;
    color: var(--dark-blue);
    text-decoration: none;
}

.swal-title {
    font-size: 1.3rem;
    font-weight: 600;
}

.swal-text {
    color: var(--grey);
    font-size: .85rem;
}

.actions-dropdown {
    padding: 0;
}

.actions-dropdown a {
    text-decoration: none;
    display: block;
    padding: .5rem;
}

.action-label {
    text-decoration: none;
    color: var(--grey);
}

#descriptive {
    max-width: 60ch;
    margin: 0 auto;
}

#setup-steps {
    width: 100%;
}

#setup-steps p {
    color: #0f0f0f;
}

.progress-step {
    display: inline-block;
    position: relative;
    text-align: center;
}

.progress-step span {
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    background: dodgerblue;
    width: 2em;
    height: 2em;
    color: var(--white);
}

.progress-step p, .progress-step p > small {
    margin: 0;
    font-size: .9rem;
    color: var(--grey);
}

.progress-step:not(.vooka-active) span {
    background: lightblue;
}

.step-done span {
    background: dodgerblue !important;
}

#domain-availability {
    padding: 10vh 0;
}

.register-domain {
    display: inline-block;
    padding: .5em 1em;
    background: var(--green);
    color: var(--offwhite);
}

.register-domain:hover {
    text-decoration: none;
    color: var(--offwhite);
}

.upload-pane {
    border: 1px solid #eee;
    margin-bottom: 1em;
    background: var(--white);
    padding: 1em;
}

[class^='select2'] {
    border-radius: 0 !important;
}

.select2-container .select2-selection--single {
    height: 40px !important;
}

.select2-selection__arrow {
    height: 40px !important;
}

.upload-pane h5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark-blue);
}

.dropzone {
    border: 1px dashed var(--light-blue);
}

.image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.image-item-actions {
    padding: .3rem 0;
    display: flex;
    justify-content: space-between;
}

.image-item-delete {
    color: var(--red);
    cursor: pointer;
}

/**
Mobile navigation
 */
.mobi-nav {
    background: var(--white);
}

.vooka-item small {
    font-size: .7rem;
}

.vooka-item {
    display: block;
    padding: .5rem;
    margin-bottom: 1em;
    box-shadow: 3px 3px 5px var(--offwhite);
}

.vooka-item-date {
    color: var(--grey);
    font-size: .7rem;
}

.vooka-item-title {
    margin: 0;
    font-weight: 500;
    font-size: .8rem;
    color: #0f0f0f;
}

.status-icon {
    font-size: .4rem;
}

/* HIDE RADIO */
.image-input {
    position: absolute;
    z-index: 1;
    border: 2px solid #fff;
    margin: .3rem;
}

/* IMAGE STYLES */
.image-input + img {
    cursor: pointer;
    width: 100%;
    object-fit: cover;
    height: 150px;
    margin-bottom: 1em;
}

/* CHECKED STYLES */
.image-input:checked + img {
    outline: 2px solid #f00;
}

.stat-card {
    color: #fff;
    background: #7a6fbe;
    border-radius: 10px;
    margin-bottom: 24px;
    box-shadow: 0 -3px 31px 0 rgba(0, 0, 0, .05), 0 6px 20px 0 rgba(0, 0, 0, .02);
}

.stat-card h6 {
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.stat-cover {
    padding: 1em;
    background: url(../img/bg-1.png);
    background-size: cover;
}

.stat-card h2 {
    color: #f5f5f5;
    margin: 1rem 0;
    font-weight: 400;
}

.stat-card span {
    font-size: .75rem;
}

.stat-badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}

.badge-success {
    background: var(--green);
}

.slider-image {
    margin-bottom: 1em;
}

.stat-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
}

#buy-domain {
    background: var(--white);
    padding: 1em;
}

#buy-domain a {
    text-decoration: none;
    padding: 8px 5px;
    color: var(--white);
    background: #7a6fbe;
    border-radius: 7px;
    font-size: .7rem;
}

#buy-domain p {
    margin: 0;
}

#buy-domain ul {
    list-style: none;
}

#buy-domain li {
    font-size: .825rem;
    margin: .2rem;
}

.point-icon {
    color: var(--green);
}

#buy-domain h3 {
    margin: 0 !important;
}

#buy-domain p {
    font-size: .825rem;
}

.upload-pane p > b {
    font-weight: 600;
    font-size: .9rem;
}

.payment-method sl-icon {
    font-size: 2em;
}

.wallet {
    background: var(--white);
    margin-bottom: 1em;
}

.wallet h5, h3 {
    font-weight: 600;
    font-size: 1.3rem;
    margin: 0;
}

.wallet-body p {
    font-size: .9rem;
    color: var(--grey);
}

.wallet-body span {
    font-weight: 600;
    font-size: .9rem;
    color: var(--black);
}

.wallet-header {
    padding: 1em;
    border-bottom: 1px solid var(--offwhite);
}

.wallet-body {
    padding: 1em;

}

.invoice {
    padding: .5rem;
    box-shadow: 3px 3px 3px var(--offwhite);
}

.invoice p {
    font-size: .825rem;
    color: var(--black);
}

#domain-cta {
    background: #fff url("../img/wave_domain.svg") bottom no-repeat;
    padding: 2em;
    border: 2px solid var(--offwhite);
}

#domain-cta img {
    margin-top: 2em;
}

#domain-cta p {
    font-size: .9rem;
}

#domain-cta > div a {
    display: inline-block;
    padding: .5em 1em;
    font-size: .8rem;
    border-radius: 2em;
    color: var(--red);
    border: 2px solid var(--red);
}

#domain-cta a:hover {
    text-decoration: none;
}

.tile-links {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    color: var(--grey);
    padding: 1em .5em;
    border-radius: 8px;
    font-size: .9rem;
    margin-bottom: .5em;

}

.tile-links:hover {
    background: var(--red);
    color: var(--offwhite);
    text-decoration: none;
}

.tile-links > sl-icon {
    font-size: 3em;
    margin-bottom: .3em;
}

.suggestion {
    padding: .5rem;
    box-shadow: 2px 2px 2px var(--offwhite);
}

.suggestion > div {
    font-size: .9rem;
    font-weight: 600;
}

.iti--allow-dropdown {
    width: 100% !important;
}

.iti--allow-dropdown input {
    height: 40px;
    vertical-align: middle;
    display: inline-block;
    max-width: 100%;
    width: 100% !important;
    padding: 0 10px;
    background: #fff;
    color: #666;
    border: 1px solid #e5e5e5;
    transition: .2s ease-in-out;
    transition-property: color, background-color, border;
}

.choose-recipient {
    border: 1px solid #f5f5f5;
    align-items: center;
    display: flex;
    width: 100%;
    box-shadow: 3px 3px 3px #f5f5f5;
    padding: .7em;
    text-decoration: none;
}

.choose-recipient:hover {
    text-decoration: none;
    box-shadow: 3px 3px 3px var(--grey);
}

.recipient-desc {
    padding: 10px;

}

.recipient-desc span {
    font-size: .9rem;
    font-weight: 600;
}

.recipient-desc small {
    font-size: .725rem;
    color: var(--grey);
}

.recipient-desc span, small {
    display: block;
}

.recipient-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 40px;
    font-size: 1.3rem;
    height: 40px;
    border-radius: 50%;
    color: var(--grey);
    background: var(--offwhite);
}

table.zidisha thead {
    margin: 0;
    padding: 0;
    height: 1.6rem;
    line-height: 1.6rem;
    background: #00aac9;
}

.zidisha th, .zidisha th a {
    color: var(--offwhite) !important;
    font-weight: 600;
    font-size: 1.1rem;
}

.zidisha th:last-child {
    background: #eb008b;
}

.zidisha td {
    padding: 15px;
    color: #3d4656;
    font-size: 16px;
    font-weight: 700;
}

.zidisha tr {
    border-bottom: 1px solid #717883;
}

#login-card {
    padding: 1rem;
    background: var(--white);
}

.attachment {
    margin: 0 .5rem .5rem .5rem;
    padding: .5rem;
    border: 1px solid var(--offwhite);
}

.attachment-icon {
    text-align: center;
}

.error-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-content {
    text-align: center;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3em;
    flex-direction: column;
    min-width: 50%;
}

.error-content h1 {
    margin: 0;
    font-size: 8em;
    line-height: 1em;
    font-weight: 800;
}
.site-error{
    background: repeating-linear-gradient(-45deg,#71b7e6,#69a6ce,#b98acc,#ee8176,#b98acc,#69a6ce,#9b59b6);
    background-size: 400%;
}
.error-content h4 {
    margin: .2em 0;
    text-transform: uppercase;
    color: #000;
    font-size: 1.8em;
    position: relative;
}

.error-content p {
    font-size: .9rem;
    color: #0d0d0d;
}

.error-content .btns {
    margin: 25px;
    display: inline-flex;
}

.btns a {
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
    border: 2px solid #69a6ce;
    color: #69a6ce;
    padding: 10px 25px;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btns a:hover{
    color: #fff;
    background: #69a6ce;
}
.card-footer{
    width: 100% !important;
}
.card-footer [slot="footer"] {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.sms-offer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.offer-price{
    font-size: .9rem;
    font-weight: 400;
    display: block;
}
.offer-quantity{
    font-weight: 800;
    font-size: 1.4rem;
}
.package-feature{
    color: var(--dark-blue);
    font-size: .825rem;
}
.web-package-price{
    margin: 2em 0;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    font-weight: 800;
    font-size: 1.2rem;
}
.web-package-price small{
    color: var(--grey);
    font-size: .8rem;
    font-weight: 400;
}
.upgrade-button{
    display: block;
    background: var(--green);
    color: var(--offwhite);
    text-align: center;
    border-radius: 7px;
    padding:7px 10px;
    margin: 1em 0;
}
.dashboard-action{
    margin-bottom:1em!important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1em;
    background: var(--white);
    text-decoration: none;
}
.dashboard-action:hover{
    text-decoration: none;
}
.dashboard-action i{
    color: var(--red);
}
.dashboard-action h4{
    color: var(--grey);
    font-size: .8rem;
    font-weight: bold;
    color: var(--green);
}
/**
Mobile navigation
 */
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {
    .invoice-header h3 {
        font-size: 1rem;
    }

    .invoice-header p {
        font-size: .8rem;
    }

    .amplify-button {
        padding: 5px 10px;
        font-size: .7rem;
    }

    .system-invoices-view td, .system-invoices-view th {
        font-size: .825rem;
    }

    .uk-button-secondary {
        font-size: .75rem;
        padding: 0 10px;
    }

    #modal_m_title {
        font-size: .7rem;
        font-weight: 600;
    }

    .profile-tab-links li > a {
        padding: 5px;
        font-size: .9rem;
    }
}