@import url("https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed&family=Josefin+Sans:wght@400;500;700&display=swap");


.dashboard__item {
    display: flex;
    align-items: center;
    padding: 30px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 0 0.075rem #fff, 0 0 0.075rem #fff, 0 0 0.75rem rgba(255, 106, 0, 0.4), 0 0 0.3rem rgba(255, 106, 0, 0.4), 0 0 0.9rem rgba(255, 106, 0, 0.4), inset 0 0 0.6rem rgba(255, 106, 0, 0.4);
}

.dashboard__item .content {
    width: calc(100% - 60px);
    padding-inline-end: 15px;
}

.dashboard__item .content .subtitle {
    display: block;
    margin-bottom: 20px;
}

.dashboard__item .content .title {
    line-height: 1;
}

.dashboard__item .thumb {
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    font-size: 30px;
    color: #FF6A00;
    border: 1px solid rgba(255, 106, 0, 0.2);
}

@media (min-width: 992px) and (max-width: 1199px) {
    .dashboard__item {
        padding: 30px 15px;
    }
}

.wish-item {
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(255, 106, 0, 0.4);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #002143;
    color: #a4bdce;
}

.wish-item .wish-thumb {
    width: 80px;
    height: 80px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}

.wish-item .wish-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wish-item .wish-content {
    width: calc(100% - 100px);
    padding-inline-start: 20px;
}

.wish-item .wish-content .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
}

.wish-item .wish-content .price {
    font-size: 18px;
}

.wish-title {
    margin-bottom: 20px;
}

.cmn--table {
    margin: 0;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #002143;
}

.cmn--table thead tr th {
    font-family: "Josefin Sans", sans-serif;
    padding: 10px;
    text-align: center;
    border: none;
    background: rgba(255, 106, 0, 0.9);
    color: #fff;
}

.cmn--table thead tr th:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.cmn--table thead tr th:first-child {
    -webkit-border-radius: 5px 0 0 0;
    -moz-border-radius: 5px 0 0 0;
    border-radius: 5px 0 0 0;
}

.cmn--table thead tr th:last-child {
    -webkit-border-radius: 0 5px 0 0;
    -moz-border-radius: 0 5px 0 0;
    border-radius: 0 5px 0 0;
}

.cmn--table tbody {
    text-align: center;
}

.cmn--table tbody tr td {
    color: #a4bdce;
    vertical-align: middle;
    padding: 8px 5px;
    border-color: rgba(255, 255, 255, 0.1);
}

.cmn--table tbody tr td .badge {
    text-transform: capitalize;
}

.cmn--table tbody tr td .btn {
    font-size: 13px;
    padding: 5px;
    line-height: 16px;
}

.cmn--table tbody tr td:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.cmn--table tbody tr td .date {
    font-size: 14px;
}

@media (min-width: 992px) {
    .cmn--table {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cmn--table .details {
        max-width: 260px;
        margin: 0 auto;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .cmn--table thead {
        display: none;
    }

    .cmn--table tbody tr {
        display: block;
    }

    .cmn--table tbody tr:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cmn--table tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        padding: 10px 15px;
        text-align: right;
    }

    .cmn--table tbody tr td::before {
        content: attr(data-label);
        margin-right: 10px;
        color: #dcf3ff;
    }

    .cmn--table tbody tr:nth-child(even) {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(15px);
    }
}

.bg--section .cmn--table {
    background: #042444;
}

.custom--card {
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.custom--card .card-header {
    background: rgba(220, 243, 255, 0.05);
    padding: 10px;
}

.custom--card .card-header .card-title {
    text-align: center;
    margin: 0;
    color: #fff;
    font-size: 18px;
}

.custom--card .card-footer {
    text-align: center;
    background: transparent;
}

.custom--card .form--control[readonly] {
    background: #042444;
}

.deposit-card {
    margin: 0 auto;
    max-width: 350px;
}

.deposit-card .card-header {
    background: rgba(255, 255, 255, 0.1);
}

.modal {
    z-index: 9999;
}

.custom--modal .modal-footer,
.custom--modal .modal-header {
    background: #002143;
    border-color: rgba(255, 255, 255, 0.1);
}

.custom--modal .modal-footer .modal-title,
  .custom--modal .modal-header .modal-title {
    margin: 0;
}

.custom--modal .modal-footer .btn-close,
  .custom--modal .modal-header .btn-close {
    background: transparent;
    font-size: 20px;
    line-height: 1;
    color: #ea5455;
    opacity: 1;
}

.custom--modal .modal-content {
    background: #042444;
    box-shadow: 0 0 0.075rem #fff, 0 0 0.075rem #fff, 0 0 0.75rem rgba(255, 106, 0, 0.2), 0 0 0.3rem rgba(255, 106, 0, 0.2), 0 0 0.9rem rgba(255, 106, 0, 0.2), inset 0 0 0.6rem rgba(255, 106, 0, 0.2);
}

.h--50px {
    height: 50px !important;
}

.custom--card .meta-info {
    justify-content: space-between;
    padding: 10px 10px 0;
}

.custom--card .meta-info .item {
    margin-bottom: 10px;
    color: #dcf3ff;
    font-weight: 500;
    font-family: "Josefin Sans", sans-serif;
}

.deposit-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.deposit-group .input-group {
    width: unset;
}

.deposit-group .deposit--label {
    max-width: 200px;
    font-family: "Josefin Sans", sans-serif;
}

@media (max-width: 767px) {
    .deposit-group .input-group {
        width: calc(100% - 160px);
    }

    .deposit-group .deposit--label {
        max-width: 160px;
    }
}

@media (max-width: 575px) {
    .deposit-group .input-group,
    .deposit-group .deposit--label {
        width: 100%;
    }

    .deposit-group .deposit--label {
        margin-bottom: 10px;
    }
}

.input-group .input-group-text.bg-transparent {
    border-color: rgba(255, 255, 255, 0.2);
}

.user--thumb {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.user--thumb .title {
    margin-bottom: 15px;
}

.user--thumb .thumb {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.user--thumb .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 992px) {
    .profle-wrapper {
        padding-left: 40px;
    }
}

textarea.form--control-2 {
    height: 120px;
    padding: 15px;
}

.form--control-2 {
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #000 !important;
    height: 45px;
    width: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 0 15px;
}

.form--control-2::placeholder {
    color: #a4bdce;
}

.form--control-2:focus {
    box-shadow: none;
}

.form--control-2[type="file"] {
    height: unset;
    line-height: 20px;
    padding: 12px 20px;
}

.support-ticket-header {
    margin: -5px;
    align-items: center;
}

.support-ticket-header .card-title, .support-ticket-header .cmn--btn {
    margin: 5px !important;
}

.support-ticket-header .cmn--btn {
    font-size: 14px;
    padding: 10px 15px 6px;
}

.support__wrapper-area li {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.support__wrapper-area li:not(:last-child) {
    margin-bottom: 15px;
}

.support__wrapper-area li .message-txt {
    padding: 25px 20px 40px;
    background: rgba(255, 255, 255, 0.1);
    max-width: 80%;
    -webkit-border-radius: 15px 15px 15px 0;
    -moz-border-radius: 15px 15px 15px 0;
    border-radius: 15px 15px 15px 0;
    position: relative;
}

.support__wrapper-area li .message-txt img {
    width: 100%;
    object-fit: contain;
    max-height: 320px;
}

.support__wrapper-area li .message-txt .date {
    font-size: 12px;
    position: absolute;
    right: 30px;
    bottom: 15px;
    color: rgba(255, 106, 0, 0.5);
}

@media (max-width: 575px) {
    .support__wrapper-area li .message-txt {
        max-width: 92%;
        font-size: 14px;
    }
}

.support__wrapper-area li.right-message .message-txt {
    margin-left: auto;
    -webkit-border-radius: 15px 15px 0 15px;
    -moz-border-radius: 15px 15px 0 15px;
    border-radius: 15px 15px 0 15px;
    background: rgba(255, 255, 255, 0.04);
}

.support--card-wrapper {
    max-width: 820px;
    margin: 0 auto;
}

.chat-form {
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
}

.chat-form .input--group .add-file-icon {
    width: 40px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    cursor: pointer;
}

.chat-form .input--group input {
    border-radius: 5px !important;
    margin: 0 15px;
    background: #042444;
    height: 50px;
}

.chat-form .input--group .input-group-text {
    font-size: 30px;
    padding: 0;
    background: transparent !important;
}

.chat-form .input--group .other-files {
    margin-right: 10px;
}

.chat-form .input--group .other-files .file-item label {
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    cursor: pointer;
    z-index: 999;
    position: relative;
}

.preloader {
    width: 100%;
    height: 100%;
    /*background: #002143;*/
    background:#000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    text-align: center;
}

.preloader .hello {
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 20px;
}

.preloader .wellcome {
    text-transform: uppercase;
}

.preloader .wellcome span {
    display: block;
    margin-top: 10px;
    color: #FF6A00;
}

.loader-frame {
    width: 100%;
    height: 100%;
    max-width: 250px;
    max-height: 250px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}

.circle {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 250px;
    max-height: 250px;
    background-color: white 0%;
    border: 1px solid #fff;
    border-radius: 50%;
    display: inline-block;
}

.loader1 {
    position: absolute;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    max-width: 300px;
    max-height: 300px;
    border-top: 5px solid #fff;
    border-bottom: 5px solid #fff;
    animation: clockwisespin 5s linear 3;
}

@keyframes clockwisespin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeout {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*Blog Section Starts Here*/
.post__item {
    background: #002143;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-shadow: 0 0 0.075rem #fff, 0 0 0.075rem #fff, 0 0 0.75rem rgba(255, 106, 0, 0.4), 0 0 0.3rem rgba(255, 106, 0, 0.4), 0 0 0.9rem rgba(255, 106, 0, 0.4), inset 0 0 0.6rem rgba(255, 106, 0, 0.4);
}

.post__item .post__thumb {
    overflow: hidden;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    position: relative;
}

.post__item .post__thumb a {
    display: block;
}

.post__item .post__thumb .category {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 4px 15px;
    -webkit-border-radius: 0 5px 0 0;
    -moz-border-radius: 0 5px 0 0;
    border-radius: 0 5px 0 0;
    background: #FF6A00;
    color: #192a56;
    font-family: "Josefin Sans", sans-serif;
    font-size: 14px;
    line-height: 24px;
}

.post__item .post__thumb img {
    width: 100%;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.post__item .post__content {
    padding: 30px;
}

.post__item .post__content .post__title {
    margin-bottom: 20px;
}

.post__item .post__content .post__title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    text-decoration: none;
}

.post__item:hover .post__thumb img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.post__item .post__read {
    font-family: "Josefin Sans", sans-serif;
    margin-top: 25px;
    color: #FF6A00;
}

@media (max-width: 991px) {
    .post__item .post__content {
        padding: 25px 15px 20px;
    }
}

.post__share {
    margin: -3px;
}

.post__share li {
    padding: 3px;
}

.post__share li a {
    text-decoration: none;
}

.post__share li a i {
    line-height: 35px;
    width: 35px;
    height: 35px;
    display: block;
    text-align: center;
    color: #fff;
    background: #FF6A00;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.post__share li a i[class*="facebook"] {
    background: #3b5998;
}

.post__share li a i[class*="twitter"] {
    background: #55acee;
}

.post__share li a i[class*="instagram"] {
    background: #e4405f;
}

.post__share li a i[class*="skype"] {
    background: #2fb7df;
}

.post__share li a i[class*="linkedin"] {
    background: #007bb5;
}

.post__share li a i[class*="youtube"] {
    background: #cd201f;
}

.post__share li a i[class*="behance"] {
    background: #1769ff;
}

.post__share li a i[class*="tumblr"] {
    background: #34465d;
}

.post__share li a i[class*="pinterest"] {
    background: #007bb5;
}

.post__share li a i[class*="navy"] {
    background: #d8e0f3;
}

.post__share li a i[class*="futbol"] {
    background: #db3776;
}

.post__share li a i[class*="vimeo"] {
    background: #1ab7ea;
}

.meta__date {
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-left: 5px solid #FF6A00;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    justify-content: space-between;
    padding: 5px;
    background: #042444;
}

.meta__date .meta__item {
    font-size: 14px;
    padding: 5px;
    display: flex;
    align-items: center;
}

.meta__date .meta__item i {
    font-size: 20px;
    color: #FF6A00;
    margin-right: 6px;
}

/*Blog Section Starts Here*/
.read--more {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-left: 10px;
    font-size: 20px;
    font-weight: 700;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

[class*="line--limit"] {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line--limit-1 {
    -webkit-line-clamp: 1;
}

.line--limit-2 {
    -webkit-line-clamp: 2;
}

.line--limit-3 {
    -webkit-line-clamp: 3;
}

.line--limit-4 {
    -webkit-line-clamp: 4;
}

.line--limit-5 {
    -webkit-line-clamp: 5;
}

/*Sidebar*/
.blog-sidebar {
    padding: 40px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 992px) and (max-width: 1199px) {
    .blog-sidebar {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 400px) {
    .blog-sidebar {
        padding: 30px 20px;
    }
}

.widget__title {
    margin-bottom: 10px;
}

.widget__title::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 2px;
    background: #FF6A00;
}

.widget {
    border: 1px dashed rgba(255, 106, 0, 0.3);
    background: #002143;
}

.widget:not(:last-child) {
    margin-bottom: 30px;
}

.widget.widget__category ul li {
    padding: 0;
}

.widget.widget__category ul li a {
    text-decoration: none;
    color: #dcf3ff;
    padding: 10px 0;
    border-bottom: 1px solid rgba(220, 243, 255, 0.2);
    display: block;
}

.widget.widget__category ul li a:hover {
    padding-left: 10px;
}

.widget.widget__post__area ul li {
    padding: 10px 0;
}

.widget.widget__post__area ul li:last-child {
    padding-bottom: 0;
}

.widget.widget__tags ul {
    margin: -5px;
}

.widget.widget__tags ul li {
    padding: 5px;
}

.widget.widget__tags ul li a {
    padding: 8px 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #042444;
    font-size: 14px;
    text-decoration: none;
    color: #dcf3ff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.widget.widget__tags ul li a:hover, .widget.widget__tags ul li a.active {
    background: #FF6A00;
    color: #fff;
}

.widget__post {
    text-decoration: none;
}

.widget__post .widget__post__thumb {
    width: 80px;
    height: 80px;
}

.widget__post .widget__post__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget__post .widget__post__content {
    width: calc(100% - 80px);
    padding-left: 15px;
}

.widget__post .widget__post__content .widget__post__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    margin-bottom: 5px;
}

.widget__post .widget__post__content span {
    font-size: 14px;
    color: #FF6A00;
}

/*Blog Single*/
.post__details .post__header {
    margin-bottom: 40px;
}

.post__details .post__header .post__title {
    margin-bottom: 25px;
}

.post__details p {
    margin-bottom: 30px;
}

.post__details .post__thumb {
    height: 420px;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    margin-bottom: 30px;
}

.post__details .post__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post__details .post__quote {
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .post__details .post__thumb {
        height: unset;
    }
}

.post__quote {
    font-size: 24px;
    line-height: 1.5;
    font-family: "Josefin Sans", sans-serif;
    color: #dcf3ff;
    font-style: italic;
    text-align: center;
    padding: 0 30px;
    border-left: 3px solid #FF6A00;
}

@media (max-width: 575px) {
    .post__quote {
        padding: 0 15px;
        font-size: 20px;
    }
}

.post__tag, .post__share {
    margin: -5px;
}

.post__tag li, .post__share li {
    padding: 5px;
}

.post__share__title {
    margin-bottom: 10px;
}

.post__tag li a {
    font-size: 14px;
    padding: 5px 15px;
    background: #002143;
    color: #dcf3ff;
    text-decoration: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.post__tag li a:hover, .post__tag li a.active {
    background: #FF6A00;
    color: #fff;
}

.post__share li a {
    text-decoration: none;
}

.post__share li a i {
    line-height: 35px;
    width: 35px;
    height: 35px;
    display: block;
    text-align: center;
    color: #fff;
    background: #FF6A00;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.post__share li a i[class*="facebook"] {
    background: #3b5998;
}

.post__share li a i[class*="twitter"] {
    background: #55acee;
}

.post__share li a i[class*="instagram"] {
    background: #e4405f;
}

.post__share li a i[class*="skype"] {
    background: #2fb7df;
}

.post__share li a i[class*="linkedin"] {
    background: #007bb5;
}

.post__share li a i[class*="youtube"] {
    background: #cd201f;
}

.post__share li a i[class*="behance"] {
    background: #1769ff;
}

.post__share li a i[class*="tumblr"] {
    background: #34465d;
}

.post__share li a i[class*="pinterest"] {
    background: #007bb5;
}

.post__share li a i[class*="navy"] {
    background: #d8e0f3;
}

.post__share li a i[class*="futbol"] {
    background: #db3776;
}

.post__share li a i[class*="vimeo"] {
    background: #1ab7ea;
}

.widget {
    background: #042444;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0px 0px 20px rgba(22, 26, 57, 0.1);
    margin-bottom: 30px;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget .category-link li {
    padding: 0;
}

.widget .category-link li a {
    text-decoration: none;
    color: #dcf3ff;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 106, 0, 0.2);
    display: flex;
    justify-content: space-between;
}

.widget .category-link li a:hover {
    padding-left: 5px;
}

.scrollToTop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    z-index: 9;
    bottom: 30px;
    right: 30px;
    font-size: 18px;
    position: fixed;
    border-radius: 5px;
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
    display: block;
    text-align: center;
    background: #FF6A00;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scrollToTop:hover {
    color: #fff;
}

.scrollToTop.active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    animation: bounceInDown 2s;
    -webkit-animation: bounceInDown 2s;
    -moz-animation: bounceInDown 2s;
}

.scrollToTop img {
    width: 100%;
}

.video__btn {
    width: 70px;
    height: 70px;
    z-index: 1;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #FF6A00;
    line-height: 75px;
    text-align: center;
}

.video__btn img {
    width: 100%;
}

.video__btn i {
    font-size: 24px;
    color: #fff;
}

.video__btn::before, .video__btn::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 74px;
    background: #FF6A00;
    opacity: 0.15;
    z-index: -10;
}

.video__btn::before {
    z-index: -10;
    -webkit-animation: inner-ripple 2000ms linear infinite;
    -moz-animation: inner-ripple 2000ms linear infinite;
    animation: inner-ripple 2000ms linear infinite;
}

.video__btn::after {
    z-index: -10;
    -webkit-animation: outer-ripple 2000ms linear infinite;
    -moz-animation: outer-ripple 2000ms linear infinite;
    animation: outer-ripple 2000ms linear infinite;
}

.video__btn-center {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.cmn--btn {
    color: #fff;
    border-radius: 5px;
    line-height: 24px;
    font-weight: 500;
    padding: 14px 30px 12px;
    background: #FF6A00;
    border: 1px solid rgba(255, 106, 0, 0.2);
    text-transform: uppercase;
    font-size: 16px;
    overflow: hidden;
    position: relative;
    display: inline-flex;
    align-items: center;
    font-family: "Josefin Sans", sans-serif;
}

.cmn--btn:hover {
    background: transparent;
    color: #dcf3ff;
}

.cmn--btn.btn--sm {
    padding: 7px 20px;
}

.cmn--btn.btn--md {
    padding: 10px 25px;
}

.cmn--btn.btn--lg {
    padding: 13px 35px;
}

.cmn--btn.btn--block {
    padding: 10px 25px;
    display: block;
}

.message__chatbox__header .cmn--btn:hover {
    color: #fff;
}

.btn.fz--16 {
    font-size: 16px;
}

.button-area {
    margin: -5px;
}

.button-area a {
    margin: 5px;
}

button.cmn--btn:hover {
    background: #FF6A00;
    color: #fff;
}

.btn__grp {
    margin: -5px;
}

.btn__grp .cmn--btn {
    margin: 5px;
}

.btn__grp .cmn--btn:nth-of-type(2n) {
    background: transparent;
    color: #FF6A00;
    border: none;
    text-decoration: underline;
    font-size: 20px;
    text-transform: capitalize;
    padding: 0;
}

@keyframes outer-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    80% {
        transform: scale(2.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(2.5);
        -moz-transform: scale(2.5);
        -ms-transform: scale(2.5);
        -o-transform: scale(2.5);
    }

    100% {
        transform: scale(3.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(3.5);
        -moz-transform: scale(3.5);
        -ms-transform: scale(3.5);
        -o-transform: scale(3.5);
    }
}

@keyframes inner-ripple {
    0% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    30% {
        transform: scale(1);
        filter: alpha(opacity=50);
        opacity: 0.5;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }

    100% {
        transform: scale(1.5);
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }
}

.menu > li:nth-last-of-type(1) .submenu, .menu > li:nth-last-of-type(2) .submenu {
    left: unset;
    right: 0;
}

.pagination {
    margin: -3px;
    margin-top: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination .page-item {
    text-align: center;
    padding: 3px;
}

.pagination .page-item a,
    .pagination .page-item span {
    width: 40px;
    height: 40px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    color: #dcf3ff;
    padding: 0;
    line-height: 40px;
    display: block;
    margin: 0;
    border: 1px solid rgba(220, 243, 255, 0.2);
    background: #002143;
}

.pagination .page-item a.active,
      .pagination .page-item span.active {
    background: #FF6A00;
}

.pagination .page-item span {
    border: none;
}

.pagination .page-item.active span,
    .pagination .page-item.active a, .pagination .page-item:hover span,
    .pagination .page-item:hover a {
    background: #FF6A00;
    color: #fff;
    border-color: rgba(220, 243, 255, 0.2);
}

.pagination .page-item.disabled span {
    background: rgba(255, 106, 0, 0.3);
    border: none;
    color: #fff;
}
.account-logo .logo a {
    height: 60px;
    display: block;
}
.account-logo .logo img {
    height: 50px;
    width: 100%;
    object-fit: contain;
}
.card-deposit {
    margin-left: auto;
    margin-right: auto;
    max-width: 350px;
}
.warining--grow {
    animation: animeShade .8s linear infinite;
}
@keyframes animeShade {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 106, 0, 0.2),
                    0 0 0 1px rgba(255, 106, 0, 0.3),
                    0 0 0 1.5px rgba(255, 106, 0, 0.4);
                    background-color: rgba(255, 106, 0, 0.1) !important;
    }
    100% {
        box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.45),
                    0 0 0 5px rgba(255, 106, 0, 0.5),
                    0 0 0 6px rgba(255, 106, 0, 0.55);
                    background-color: rgba(255, 106, 0, 1) !important;
    }
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}
.privacy--menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.privacy--menu li {
padding: 4px;
}
.privacy--menu li a {
    padding: 0 4px;
    color: #fff;
    font-size: 14px;
}
.privacy--menu li a:hover {
    color: #ff6a00
}

.seller-thumb {
    position: relative;
}
.seller-thumb img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
}
.user-dashboard-icon img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 50%;
}

.user-dashboard-icon {

}

.user-dashboard-icon::after {
    display: none;
}
.withdraw-preview .list-group-item {
    display: flex;
    justify-content: space-between;
}
.badge {
    font-weight: 400;
}
.cookie__wrapper {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background: #192a56;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 10vh;
    font-size: 18px;
    z-index: 99999;
    color: #ddd;
    border-top: 1px solid rgba(255, 255, 255, .1);
}
.cookie__wrapper .txt {
    max-width: 720px;
    margin-right: 20px;
}
.specification__lists li {
    display: flex;
    padding: 5px 0;
    justify-content:space-between;
    font-size: 14px;
    border-bottom: 1px dashed rgba(255, 255, 255, .1)
}
.specification__lists li .name {
color: #ff6a00;
}
@media screen and (min-width:1200px) {
    .seller-info li:nth-child(even) {
        text-align: right;
    }
    .seller-info li {
        min-width: calc((100% / 3) + 1px);
    }
}
.profile-page-seller li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(255, 255, 255, .1);
    padding: 10px 5px;
    width: 100%;
}
.comments-details {
    max-width: 300px;
    margin: 0 auto;
}





.dashboard-menu {
    background: #042444;
    padding: 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.dashboard-menu .user .title a {
    color: #fff;
}

.dashboard-menu ul li {
    padding: 0;
}

.dashboard-menu ul li a.active {
    margin: 5px 0;
}
.dashboard-menu ul li a {
    display: block;
    padding: 10px;
    line-height: 1.5;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    color: #93b4ca;
    border-radius: 10px 4px 4px 10px;
    border-right: none;
}

.dashboard-menu ul li a i {
    margin-right: 7px;
    color: #FF6A00;
}

.dashboard-menu ul li a:hover, .dashboard-menu ul li a.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #ff6a00;
}

.dashboard-menu .side-sidebar-close-btn {
    right: 25px;
    top: 25px;
    display: none;
    position: absolute;
    color: red;
    font-size: 24px;
    line-height: 1;
}

@media (max-width: 1199px) {
    .dashboard-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        -webkit-transition: 0.7s ease;
        -moz-transition: 0.7s ease;
        transition: 0.7s ease;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        overflow-y: auto;
        z-index: 9999;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    .dashboard-menu ul li a {
        color: #ddd;
    }

    .dashboard-menu ul li a:hover, .dashboard-menu ul li a.active {
        background: #fff;
        color: #fff;
    }

    .dashboard-menu.active {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .dashboard-menu .side-sidebar-close-btn {
        display: block;
    }

    .dashboard-menu .user .title a {
        color: #fff;
    }

    .dashboard-menu ul li a {
        color: #fff;
    }

    .dashboard-menu ul li a:hover, .dashboard-menu ul li a.active {
        background: #fff;
        color: #042444;
    }
}

.dashboard-menu .create-accounts {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
}

.dashboard-menu .create-accounts a {
    color: #fff;
}

.dashboard-menu .user {
    text-align: center;
    padding: 30px 30px 15px;
}

.dashboard-menu .user .thumb {
    width: 120px;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.dashboard-menu .user .thumb a {
    display: block;
}

.dashboard-menu .user .thumb img {
    width: 100%;
}

.dashboard-menu .user .content {
    text-transform: capitalize;
}
.sidebar__init {
    background: #FF6A00;
    color: #fff;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, .1);
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-left: auto;
}


