@charset "utf-8";
/*
	Author: Filip Todorov - www.filiptodorov.com
	Project: Prospector Products
	All rights reserved
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body, html {
    font-family: 'Poppins', sans-serif;
    position: relative;
    font-size: 14px;
    background: #f2f3f4;
}

@media (min-width: 1500px) {
    .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
    .navbar-expand-md {
        min-height: 90vh;
    }
}

/* NAVIGATION */
.navbar-light {
    background: transparent !important;
    height: 100%;
    padding: 0 0 30px 0;
    border-right: 1px solid #eee;
    align-items: flex-start;
}
.navbar-light .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    flex-direction: column;
}
.navbar .navbar-brand {
    margin: 0 0 30px 0;
    border-top-left-radius: 8px;
    border-bottom: 1px solid #eee;
    padding: 30px;
    width: 100%;
    text-align: center;
}
.navbar .navbar-brand img {
    height: 50px;
}
.navbar .navbar-collapse {
    display: block !important;
    width: 100%;
}
.navbar .navbar-nav {
    padding: 0;
    width: 100%;
    display: block;
}
.navbar .nav-item {
    width: 100%;
    display: block;
    padding: 5px 30px;
}
.navbar .nav-item > .nav-link {
    color: #303841;
    font-weight: 500;
    font-size: 1.1rem;
    width: 100%;
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
    transition: 0.15s ease all;
}
.navbar .nav-item > .nav-link:hover,
.navbar .nav-item.active > .nav-link {
    background: #f2f4f9;
}
.navbar .nav-item > .nav-link:active {
    background: #e1e2e9;
}
.navbar .nav-item > .nav-link i,
.navbar .nav-item > .nav-link span {
    display: inline-block;
    vertical-align: middle;
}
.navbar .nav-item > .nav-link i {
    font-size: 1.75rem;
}
.navbar .nav-item > .nav-link span {
    padding-left: 5px;
}
.navbar .profile-item {
    display: block;
    padding: 0 30px 15px 30px;
    position: relative;
}
.navbar .profile-item .avatar {
    display: inline-block;
    vertical-align: middle;
    width: 60px;
    height: 60px;
    background: #f2f4f9;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 16px;
    color: #303841;
    font-weight: 700;
}
.navbar .profile-item .profile-details {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 65px);
    padding-left: 10px;
}
.navbar .profile-item strong {
    display: block;
    font-weight: 600;
    color: #303841;
    margin: 0;
    font-size: 1.2rem;
}
.navbar .profile-item span {
    display: block;
    font-size: 0.8rem;
    color: #7a7a7a;
}
.navbar .nav-item.feature-nav-item {
    position: relative;
}
.navbar .nav-item.feature-nav-item a {
    background: #f2f3f4;
    padding: 15px;
}
.navbar .nav-item.feature-nav-item a img {
    float: right;
    margin-left: 10px;
}
.navbar .nav-item.feature-nav-item a span {
    display: block;
    font-size: 0.9rem;
    padding-left: 0;
}
.navbar .nav-item .support {
    position: unset;
}

.navbar .nav-item.feature-nav-item a strong {
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1;
    letter-spacing: -1px;
    margin: 2px 0 10px 0;
    display: block;
}


/* FONT SIZING */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #303841;
}
h2 {
    font-size: 1.7rem;
    font-weight: 400;
    color: #303841;
}
h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #303841;
}
h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #303841;
}
h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #303841;
}

/* FORM ELEMENTS */
.form-control {
    height: auto;
    padding: 10px 15px;
    background: #eeeeee;
    border: 1px solid #eeeeee;
    font-size: 1rem;
    transition: 0.15s ease all;
}
.form-control:focus {
    background: #fff;
    border-color: #fff;
    box-shadow: rgba(255,87,34,.4) 0 0 0 3px;
}
.checkbox label {
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    user-select: none;
    font-size: 0.95rem;
}
.checkbox label input {
    position: absolute;
    top: 5px;
    left: 5px;
    opacity: 0;
}
.checkbox label input + div {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 25px;
    height: 25px;
    background: #eee;
    border-radius: 4px;
}
.checkbox label input:checked + div {
    background: #d7ab51;
}
.checkbox label input + div:before {
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Line Awesome Free';
    content: '\f00c';
    font-weight: 600;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    color: #fff;
    opacity: 0;
    transition: 0.15s ease all;
    transform-origin: center bottom;
    transform: scale(0.75) translateY(10px);
}
.checkbox label input:checked + div:before {
    transform: scale(1) translateY(0);
    opacity: 1;
}
.btn {
    padding: 12px;
}
.btn.btn-primary {
    background: #d7ab51;
    border-color: #d7ab51;
}
.btn.btn-blue {
    background: #41b3f9;
    border-color: #41b3f9;
    color: #fff;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background: #ff764d;
    border-color: #ff764d;
    box-shadow: none;
}
.btn.btn-primary:active {
    background: #00adb5 !important;
    border-color: #00adb5 !important;
    box-shadow: none !important;
}
.btn.btn-secondary {
    background: #4a5664;
    border-color: #4a5664;
}
.btn.btn-secondary:hover,
.btn.btn-secondary:focus {
    background: #292f37;
    border-color: #292f37;
    box-shadow: none;
}
.btn.btn-secondary:active {
    background: #00adb5 !important;
    border-color: #00adb5 !important;
    box-shadow: none !important;
}

#supportModal .tkt-btn a{
    width: 275px;
}
/* ALERTS */
.alert.alert-danger {
    padding: 10px 10px 10px 50px;
    font-size: 12px;
    border: 2px solid #d7ab51;
    background: #d7ab51;
    position: relative;
    color: #fff;
}
.alert.alert-danger:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.25);
    color: #fff;
    font-family: 'Line Awesome Free';
    content: '\f071';
    font-weight: 600;
    line-height: 30px;
    font-size: 18px;
    text-align: center;
    margin: auto;
    border-radius: 6px;
}
.alert.alert-success {
    padding: 10px 10px 10px 50px;
    font-size: 12px;
    border: 2px solid #00adb5;
    background: #00adb5;
    position: relative;
    color: #fff;
}
.alert.alert-success:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.25);
    color: #fff;
    font-family: 'Line Awesome Free';
    content: '\f00c';
    font-weight: 600;
    line-height: 30px;
    font-size: 18px;
    text-align: center;
    margin: auto;
    border-radius: 6px;
}

/* LOGIN SCREEN */
.login-screen {
    display: flex;
    min-height: calc(100vh  - 63px);
    height: auto;
    padding: 50px 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('../img/login-bg.svg') center bottom no-repeat #fff;
    background-size: cover;
}
.login-screen .box {
    display: block;
    position: relative;
    padding: 45px;
    background: #fff;
    border-radius: 8px;
    box-shadow: rgba(22,28,45,.075) 0 1.75rem 3.5rem 1.5rem;
    margin-bottom: 25px;
}
.login-screen .login-right {
    padding: 0;
    overflow: hidden;
    border: 2px solid #303841;
}
.login-screen .login-right .login-box {
    width: 50%;
    float: left;
    padding: 45px;
}
.login-right .register-box {
    padding: 0;
    /* padding: 227px 45px; */
    width: 50%;
    float: left;
    background-color: #303841;
}
.register-box-content {
    padding: 181px 45px;
    text-align: center;
}
.register-box-content h2 {
    color: #fff;
    margin-bottom: 18px;
}
.register-box-content p {
    color: #fff;
    margin-bottom: 25px;
}

.login-right {
    display: flex !important;
}

@media (max-width: 991px) {
    .login-right {
        display: block !important;
    }
    .login-screen .login-right .login-box {
        width: 100%;
    }
    .login-right .register-box {
        width: 100%;
        padding: 0;
    }
    .register-box-content {
        padding: 45px;
        text-align: center;
    }
}
.login-right .register-box .btn-primary {
    background-color: #FFF;
    color: #303841;
    border-color: #303841;
    font-weight: 500;
}

.login-screen .box .logo {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    display: block;
    text-align: center;
}
.login-screen .box .logo img {
    max-height: 215px;
}
.login-screen .small-logo {
    padding-top: 30px;
    text-align: center;
}
.login-screen .small-logo span {
    display: inline-block;
    vertical-align: middle;
    padding-right: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #303841;
}
.login-screen .small-logo a {
    display: inline-block;
    vertical-align: middle;
}
.login-screen .small-logo img {
    filter: grayscale(1);
    height: 30px;
    display: inline-block;
    vertical-align: middle;
}
.login-screen .box .checkbox {
    padding-bottom: 10px;
}
.login-screen p.extra-action {
    font-size: 12px;
}
.login-screen p.extra-action a {
    color: #303841;
    font-weight: 600;
}
.login-screen .checkbox span a {
    color: #d7ab51;
    font-weight: 600;
}

/* FOOTER */
footer {
    display: block;
    padding: 0 0 20px 0;
}
footer ul.links {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}
footer ul.links li {
    display: inline-block;
    vertical-align: middle;
    padding-left: 15px;
}
footer ul.links li a {
    color: #777;
}
footer p {
    margin: 0;
    color: #777;
}
footer p.disclaimer {
    color: #ccc;
    margin-top: 5px;
    font-size: 0.8rem;
}
footer p, a {
    font-size: 12px;
}

/* PAGE WRAPPER */
.page-wrapper {
    height: auto;
    padding: 0 0 20px 0;
    background: #fff;
    background-size: cover;
}
.page-wrapper .box {
    background: #fff;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    box-shadow: rgba(22,28,45,.075) 0 1.75rem 3.5rem 1.5rem;
}
.page-wrapper .box .inner-content {
    padding: 30px 30px 30px 0;
}
.page-wrapper .box .inner-content.textual-content {
    padding: 30px 40px;
}
.page-wrapper .box .inner-content.textual-content .navbar-brand {
    margin-bottom: 25px;
    display: inline-block;
}
.page-wrapper .box .inner-content.textual-content .navbar-brand img {
    height: 50px;
}
.page-wrapper .page-title {
    display: block;
}
.page-wrapper .page-title p {
    font-size: 0.9rem;
    color: #777;
}
.page-wrapper .page-title p a {
    color: #d7ab51;
    font-size: inherit;
}
.page-wrapper .privacy-content h4 {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    color: #303841;
    margin: 30px 0 5px 0;
}
.page-wrapper .privacy-content p,
.page-wrapper .privacy-content ul li,
.page-wrapper .privacy-content ol li {
    font-size: 1rem;
    color: #666;
}
.page-wrapper .privacy-content ul + p,
.page-wrapper .privacy-content ol + p {
    margin-top: 30px;
}

/* PRODUCTS */
.products.row {
    margin-left: -7.5px;
    margin-right: -7.5px;
}
.products.row div[class^='col'] {
    padding-left: 7.5px;
    padding-right: 7.5px;
}
.products .product-item {
    display: block;
    background: #fff;
    border-radius: 6px;
    padding: 25px 25px 80px 25px;
    margin-top: 15px;
    height: calc(100% - 15px);
    border: 1px solid #eee;
    position: relative;
    transition: 0.15s ease all;
}
.products .product-item[data-check-purchase="true"] {
    user-select: none;
    cursor: wait;
}
.products .product-item[data-check-purchase="true"]:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background: rgba(255,255,255,0.85);
    content: ' ';
}
.products .product-item[data-check-purchase="true"]:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 35px;
    height: 35px;
    margin: auto;
    border-radius: 50%;
    border: 4px solid rgba(0,0,0,0.2);
    border-right-color: transparent;
    -webkit-animation: ROTATE-EFFECT 1s linear infinite;
    -moz-animation:    ROTATE-EFFECT 1s linear infinite;
    -o-animation:      ROTATE-EFFECT 1s linear infinite;
    animation:         ROTATE-EFFECT 1s linear infinite;
    content: ' ';
    z-index: 10;
}
@-webkit-keyframes ROTATE-EFFECT {
    0%   { transform: rotate(0deg) }
    100% { transform: rotate(360deg) }
}
@-moz-keyframes ROTATE-EFFECT {
    0%   { transform: rotate(0deg) }
    100% { transform: rotate(360deg) }
}
@-o-keyframes ROTATE-EFFECT {
    0%   { transform: rotate(0deg) }
    100% { transform: rotate(360deg) }
}
@keyframes ROTATE-EFFECT {
    0%   { transform: rotate(0deg) }
    100% { transform: rotate(360deg) }
}
.products .product-item:hover {
    box-shadow: rgba(22,28,45,.055) 0 1rem 1.5rem 0.25rem;
}
.products .product-item.inactive {
    filter: grayscale(1);
}
.products .product-item.inactive:hover {
    filter: none;
}
.products .product-item img.img-fluid {
    max-width: inherit;
    height: 30px;
    display: block;
    margin: auto;
}
.products .product-item p {
    text-align: center;
    font-size: 12px;
    color: #777;
    padding: 10px 0 10px 0;
}
.products .product-item .action-button {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    width: calc(100% - 50px);
}
.products .product-item.inactive .action-button {
    opacity: 0.5;
    transition: 0.15s ease all;
}
.products .product-item.inactive:hover .action-button {
    opacity: 1;
}
.products .product-item .features {
    padding-bottom: 15px;
}
.products .product-item .features .feature-item {
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 4px);
    text-align: center;
}
.products .product-item .features .feature-item strong {
    color: #303841;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1;
    display: block;
}
.products .product-item .features .feature-item span {
    display: block;
    font-size: 0.8rem;
    color: #999;
}

/* ORDERS TABLE */
.orders-table {
    margin-top: 30px;
}
.orders-table thead th,
.orders-table tbody tr td {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 0.95rem;
    vertical-align: middle;
}
.orders-table.table-hover tr {
    transition: 0.15s ease all;
}
.orders-table.table-hover tr:hover {
    background: #f2f4f9;
}
.orders-table .btn {
    padding: 6px 10px;
}
.orders-table .btn i {
    font-size: 24px;
}

/* FORM BOX */
.form-box .form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #777;
    margin-bottom: 3px;
    display: block;
}
.form-box h4 {
    font-weight: 400;
    margin-top: 25px;
    margin-bottom: 15px;
}
.form-group.reset-password-group {
    position: relative;
}
.form-group.reset-password-group a {
    font-weight: bold;
    color: #d7ab51;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    line-height: 20px;
    height: 20px;
    margin: auto;
    display: inline-block;
    font-size: 11px;
}

@media (min-width: 768px) and (max-width: 991px) {
    html, body {
        font-size: 12px;
    }
    .navbar .navbar-brand img {
        height: 35px;
    }
    .navbar .nav-item.profile-item {
        text-align: center;
        padding-bottom: 20px;
    }
    .navbar .profile-item .avatar {
        display: block;
        margin: auto;
    }
    .navbar .profile-item .profile-details {
        display: block;
        width: 100%;
        padding-left: 0;
        padding-top: 5px;
    }
    .navbar .nav-item {
        padding: 5px 15px;
    }
    .navbar .nav-item > .nav-link {
        padding: 10px 10px;
    }
    .products .product-item img.img-fluid {
        margin-left: 0;
    }
    .products .product-item p {
        text-align: left;
    }
}

@media (max-width: 767px) {
    html, body {
        overflow-x: hidden;
    }
    .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }
    .page-wrapper {
        padding-bottom: 15px;
        background: #fff;
    }
    .page-wrapper .box {
        border-radius: 0;
        box-shadow: none;
    }
    .navbar-light {
        padding: 0;
        border-bottom: 1px solid #eee;
    }
    .navbar-light .nav-wrapper {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .navbar .navbar-brand {
        padding: 15px 15px;
        width: auto;
        margin-bottom: 0;
        border-bottom: none;
    }
    .navbar .navbar-brand img {
        height: 40px;
    }
    .navbar .mobile-user {
        margin-right: 9px;
        padding: 6px 6px;
        transition: 0.15s ease all;
        user-select: none;
        border-radius: 50%;
    }
    .navbar .mobile-user:active,
    .navbar .mobile-user:hover,
    .navbar .mobile-user:focus {
        background: #eee;
    }
    .navbar .mobile-user .avatar {
        width: 35px;
        height: 35px;
        display: inline-block;
        vertical-align: middle;
        background: #303841;
        color: #fff;
        border-radius: 50%;
        text-align: center;
        line-height: 35px;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
    }
    .navbar .mobile-user .profile-details {
        display: inline-block;
        vertical-align: middle;
        display: none;
    }
    .navbar .mobile-user .profile-details strong {
        font-weight: 600;
        font-size: 0.9rem;
    }
    .navbar .navbar-collapse {
        display: none !important;
        width: 100%;
    }
    .navbar .navbar-collapse.collapsing,
    .navbar .navbar-collapse.show {
        display: block !important;
    }
    .navbar .nav-item {
        padding: 5px 15px;
    }
    .page-wrapper .box .inner-content {
        padding: 20px 15px;
    }
    .products .product-item {
        height: auto;
        margin-top: 10px;
    }
}

/* SOME OTHER CSS */
.social-container {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #c9c9c9;
    border-radius: 10px;
    padding: 5px;
    font-size: 16px;
    z-index: 999;
}
.social-page {
    position: relative;
}
.social-page .social-container {
    right: 0;
}
.social-container img {
    height: 18px;
    padding: 0 4px;
    filter: grayscale(100%);
    cursor: pointer;
    margin: 0 0 10px 0px;
}
.social-container img:hover {
    transition: 0.5s;
    filter: grayscale(0%);
}

/* VIDEO BOXES */
.video-box {
    display: block;
    padding: 20px;
    border-radius: 0;
    background: #f2f3f4;
}
.video-box + .video-box {
    margin-top: 30px;
}
.video-box h4.video-title {
    font-weight: 600;
    font-size: 1rem;
    color: #303841;
    margin-bottom: 15px;
}