#user-menu {
}

#user-menu-dropdown {
    margin: 5px 0 0 0;
}

#user-menu-dropdown li {
    position: relative;
}

.selected-session-language {
    position: absolute;
    top: 6px;
    left: 4px;
}

@media (max-width: 767px) {
    #session-language {
        margin: 12px 0 0 15px;
    }
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    cursor: pointer;
    background-color: #ffffff;
}

.radio label, .checkbox label {
    margin-left: 14px;
}

.control-label {
    font-size: 13px;
}

.inline-field {
    width: 145px;
    display: -webkit-inline-box;
    padding: 0 5px;
    height: 29px;
}

.disabled {
    opacity: 0.4;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.help-block {
    width: 100%;
    display: inline-block;
}

.form-head {
    text-align: center;
    background-color: #c79c59;
    padding: 1px 0;
    color: #ffffff;
    margin: 0 0 18px 0;
}

.quick-access {
    margin: 9px 0 6px 0;
}

.quick-access p {
    margin: 12px 0 0 0;
    color: #656565;
    font-size: 13px;
    font-family: IRANSans;
}

.quick-access .fa {
    background: #f9f9fc;
    padding: 13px 19px;
    width: 85px;
    vertical-align: middle;
    border-radius: 50%;
    line-height: 59px;
    height: 85px;
    color: #328efe;
    text-align: center;
    display: inline-block;
}

.quick-access a {
    display: inline-block;
    vertical-align: middle;
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    transition-duration: 0.3s;
    text-align: center;
    transition-property: transform;
}

.quick-access a:hover,
.quick-access a:focus,
.quick-access a:active {
    transform: scale(1.1);
}

#accept_terms {
    margin-left: 7px;
}

/* Footer */
.sticky-footer {
    bottom: 0;
    width: 100%;
    text-align: center;
    height: 60px;
    margin-top: 14px;
    line-height: 60px;
}

.sticky-footer .text-muted {
    border-bottom: 1px solid #f9f9fc;
    box-shadow: 0px 1px 0px #ecf0f1;
}

.calculate-order {
    margin-top: 12px;
    font-size: 14px;
}

.price-font {
    direction: ltr;
}

.required-field {
    display: none;
}

.panel-top-button {
    margin-bottom: 17px;
}

.panel-top-button a {
    margin: 0 11px 0 0;
}

.order-note p {
    line-height: 18px;
    font-size: 12px;
    margin-bottom: 7px;
}

.input-group.date {
    width: 150px;
}

.invoice-payment-text {
    margin: -14px 0 20px 0;
}

.invoice-payment-box {
    min-height: 202px;
}

.invoice-payment-box img {
    margin-bottom: 14px;
}

.choice-item {
    height: 420px;
}

.choice-item img {
    width: 80%;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .choice-item {
        height: auto;
    }
}

.order-description {
    width: 100%;
    min-height: 115px;
    background-color: #ffffff;
    border-color: #ffffff;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

li.nav-user-credit {
    margin: 9px 0 0 13px;
    padding: 11px 9px;
    color: white;
    border-radius: 4px;
    background-color: #2669bb;
}

li.nav-user-credit span {
    float: left;
    margin: 0 14px 0 0;
}

#user-menu-dropdown .fa {
    left: 6px;
    position: relative;
    top: 1px;
}

.description-column {
    width: 400px;
}

@media (max-width: 1389px) and (min-width: 1384px) {
    a.navbar-brand {
        display: none;
    }
}

@media (max-width: 1299px) and (min-width: 1199px) {
    a.navbar-brand {
        display: none;
    }
}

.user-notice-body {
    text-align: justify;
    height: 400px;
    overflow: auto;
}

.sell-panel .table-panel tr {
    font-size: 16px;
}

.invoice-head .btn {
    padding: 4px 7px;
    display: inline-block;
}

.invoice-head {
    width: 250px;
    margin-top: 6px;
}

@media print {
    .invoice-head .btn {
        display: none;
    }
}

/**
Progress Bar
 */

.circle-chart {
    width: 110px;
    height: 110px;
}

.circle-chart__circle {
    stroke: #00acc1;
    stroke-width: 2;
    stroke-linecap: square;
    fill: none;
    animation: circle-chart-fill 2s reverse; /* 1 */
    transform: rotate(-90deg); /* 2, 3 */
    transform-origin: center; /* 4 */
}

/**
 * 1. Rotate by -90 degree to make the starting point of the
 *    stroke the top of the circle.
 * 2. Scaling mirrors the circle to make the stroke move right
 *    to mark a positive chart value.
 * 3. Using CSS transforms on SVG elements is not supported by Internet Explorer
 *    and Edge, use the transform attribute directly on the SVG element as a
 * .  workaround.
 */

.circle-chart__circle--negative {
    transform: rotate(-90deg) scale(1, -1); /* 1, 2, 3 */
}

.circle-chart__background {
    stroke: #efefef;
    stroke-width: 2;
    fill: none;
}

.circle-chart__info {
    animation: circle-chart-appear 2s forwards;
    opacity: 0;
    transform: translateY(0.3em);
}

.circle-chart__percent {
    alignment-baseline: central;
    text-anchor: middle;
    font-size: 8px;
}

.circle-chart__subline {
    alignment-baseline: central;
    text-anchor: middle;
    font-size: 5px;
}

.success-stroke {
    stroke: #328efe;
}

.warning-stroke {
    stroke: #ffbb33;
}

.danger-stroke {
    stroke: #ff4444;
}

@keyframes circle-chart-fill {
    to {
        stroke-dasharray: 0 100;
    }
}

@keyframes circle-chart-appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/**
User Status
 */
.user-status-circle .circlechart {
    margin: 8px 0 0 0;
}

.user-status-circle .items {
    margin: 12px 0 0 0;
}

.user-status-circle .items ul {
    padding: 0;
    text-align: right;
}

.user-status-circle .items ul li {
    list-style: none;
    border-bottom: 1px solid #eaeaea;
    line-height: 27px;
    font-size: 12px;
    padding: 0 3px;
}

.user-status-circle .items ul li a {
    color: inherit;
}

.user-status-circle .items ul li:before {
    font: normal normal normal 14px/1 "Font Awesome 5 Free";
    width: 15px;
    display: inline-block;
    text-align: center;
    float: left;
    margin-top: 7px;
    font-weight: bold;
}

.user-status-circle .items .status-confirmed {
    color: #328efe;
}

.user-status-circle .items .status-confirmed:before {
    content: "\f00c";
}

.user-status-circle .items .status-rejected {
    color: red;
}

.user-status-circle .items .status-rejected:before {
    content: "\f00d";
}

.user-status-circle .items .status-none {
    color: red;
}

.user-status-circle .items .status-none:before {
    content: "\f12a";
}

.user-status-circle .items .status-pending {
    color: #737373;
}

.user-status-circle .items .status-pending:before {
    content: "\f021";
}

label.terms {
    font-size: 11px;
    margin-right: 3px;
}

.withdraw-user-credit {
    border-bottom: 1px solid #cacaca;
    padding: 8px 0 17px;
    margin: 0px 0 15px 0;
}

.withdraw-user-credit span {
    font-size: 19px;
}

.withdraw-user-credit .credit {
    color: #18bc9c;
    font-weight: bold;
    margin: 0 4px;
}

.checkbox-has-error {
    border: 1px solid #fd3939;
    border-radius: 4px;
    padding: 0px 5px;
}

.wallet-address {
    margin: 23px 0 8px 0;
    text-align: center;
}

.wallet-address p {
    padding: 0px 0;
    color: #000000;
    font-weight: bold;
    font-size: 17px;
}

.bank-card-table .alert {
    min-height: 68px;
}

.profile-tab a.nav-link {
    padding: 13px 3px;
    font-size: 12px;
}