/* CUSTOM */

.align-items--center {
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.align-items--flex-end {
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.align-items--flex-start {
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.bg--white {
    background-color: white !important;
}

.bg--light-grey {
    background-color: #f4f4f4 !important;
}

.bg--dark {
    background-color: #333 !important;
}

.bg--default {
    background-color: #F5F5F5;
}

.bg--main {
    background-color: #ee008d !important;
}

.border-left {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
}

.border-right {
    border-right: 1px solid #eee;
    border-radius: 0;
}

.border-radius-md {
    border-radius: 5px;
}

@media (max-width: 991px) {
    .border-right,
    .border-left {
        border: none
    }
}

.align-pbottom {
    bottom: 0;
}
.pad-md-char {
    line-height: 1.5;
    color: #555;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}


.button {
    border-radius: 5px;
    padding: 0 17px;
    font-size: 16px;
    height: 34px;
    line-height: 34px;
    margin: 0;
    text-shadow: none;
    text-transform: capitalize;
}

.btn-success {
    background-color: #ee008d !important;
    border-color: #ee008d !important;
}

.btn-back {
    position: relative;
}

.btn-back .btn-back-history {
    background-color: white;
    border: 0px;
    border-radius: 5px;
    height: 41px;
    left: -4rem;
    padding: 0 17px;
    position: absolute;
    top: 0rem;
}

@media (max-width: 1280px) {
    .btn-back .btn-back-history {
        display: none;
    }
}

.card {
    -webkit-font-smoothing: subpixel-antialiased;
    min-height: 187px;
}

.card-shadow {
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #F0F0F0;
    -webkit-box-shadow: 0 10px 50px -20px rgba(40, 40, 40, .4);
    box-shadow: 0 10px 50px -20px rgba(40, 40, 40, .4);
}

.center-center-absolute {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100vw;
    transform: translate3d(-50%, -50%, 0);
    width: 100%;
}
.center-height-absolute {
    position: absolute;
    top: 50%;
    max-width: 100vw;
    transform: translateY(-50%);
}

@media (max-width: 479px) {
    .center-center-absolute {
        top: 60%;
    }
}
.container{
    border-radius: 5px;
}

.status {
    display: inline-flex;
    height: 34px;
    align-items: center;
}
.status-circle {
    background-color: #ee008d;
    border-radius: 50%;
    display: inline-block;
    height: 12px;
    margin-right: 5px;
    width: 12px;
}

.status-circle.not-publish{
    opacity: 0.4;
}

.col-last.col-last {
    padding-right: 0;
}
.col-half {
    display: block;
    float: left;
    padding-right: 2rem;
    position: relative;
    width: 50%
}
.col-one-fifth {
    display: block;
    float: left;
    padding-right: 2rem;
    position: relative;
    width: 20%
}
.col-two-fifth {
    display: block;
    float: left;
    padding-right: 2rem;
    position: relative;
    width: 40%
}
.col-three-fifth {
    display: block;
    float: left;
    padding-right: 2rem;
    position: relative;
    width: 60%
}

#content {
    min-height: 35rem;
}


@media (max-width: 479px) {
    #content {
        min-height: 15rem;
    }
}

.cursor--pointer {
    cursor: pointer;
}

.cursor--default {
    cursor: default;
}

.d--block {
    display: block;
}

.d--table {
    display: table;
}

.d--table-cell {
    display: table-cell;
}

.d--inline-block {
    display: inline-block;
}
.d--inline-table {
    display: inline-table;
}

.d--flex {
    display: -ms-flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
}
.d--flex-important {
    display: -ms-flex !important;
    display: -webkit-flex !important;
    display: -moz-flex !important;
    display: flex !important;
}

.description{
    font-weight: 300;
}

.disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

.dropdown-divider {
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}

.ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.error-message {
    color: #e30917
}

.fade-in-transition {
    animation: fadein 0.5s;
}

@keyframes fadein {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.field {
    border-radius: 5px;
    background-color: #f4f4f4;
    font-size: 16px;
    line-height: 34px;
    margin: unset;
    padding: 0 17px;
    text-shadow: none;
    min-height: 34px;
}

.field.not-editable {
    color: #BBB;
    cursor: default;
}

.flex1{
    -webkit-flex:1;
    -ms-flex:1;
    flex:1;
    min-width: 0;
}

.flex-direction--column{
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
}
.flex-wrap--wrap{
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap;
}

.half-width {
    width: 50%;
}

.full-width {
    width: 100%;
}

.full-height {
    height: 100%;
}

.full-height--important {
    height: 100% !important;
}

.hero-image {
    height: 40rem;
    background: #ee008d; /* Old browsers */
    background: -moz-linear-gradient(90deg, #ee008d 0%, #20cc5b 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(90deg, #ee008d 0%, #20cc5b 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(90deg, #ee008d 0%, #20cc5b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee008d', endColorstr='#20cc5b', GradientType=1); /* IE6-9 fallback on horizontal gradient */
    position: absolute;
}

.icon {
    background-color: #ddd !important;
}
.image-responsive{
    height: auto;
    max-width: 100%;
}
.image-rounded {
    background-size: cover;
    background-color: #f4f4f4;
    border-radius: 50%;
    height: 5.5rem;
    margin-bottom: .9rem;
    overflow: hidden;
    width: 5.5rem;
}

.input {
    border: 0;
    padding: 0 17px;
    font-size: 16px;
    height: 34px;
    line-height: 34px;
}

.input-search {
    background: transparent;
    border: 0;
    font-weight: 300;
    height: 5rem;
    width: 100%;
}

.input-search + .input-search-icon.toRight {
    cursor: pointer;
    position: absolute;
    width: 5rem;
    right: 2.5rem;
    top: 1.8rem;
}

@media (max-width: 479px) {
    .input-search + .input-search-icon.toRight {
        right: 0;
    }
}

.justify-content--flex-end{
    justify-content: flex-end;
}

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

.limit-line {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}
.line-clamp--two {
    -webkit-line-clamp: 2; /* number of lines to show */
    -webkit-box-orient: vertical;
    height: 56px;
}
.line-clamp--three {
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
    height: 74px;
}

.logo-max-height--100 {
    max-height: 100%;
}

.margin-horizontal-md {
    margin: 0 20px;
}

.margin-xs {
    margin: .5rem 0;
}

.margin-sm {
    margin: 10px 0;
}

.margin-md {
    margin: 3rem 0;
}

.margin-top-auto {
    margin-top: auto;
}

.margin-top-md {
    margin-top: 2rem;
}

@media (max-width: 479px) {
    .margin-top-md {
        margin-top: 1rem;
    }
}

.margin-bottom-md {
    margin-bottom: 3rem;
}

@media (max-width: 479px) {
    .margin-bottom-md {
        margin-bottom: 1.5rem;
    }
}

.margin-bottom-sm {
    margin-bottom: 1rem;
}

.margin-lg {
    margin: 6rem 0;
}

@media (max-width: 991px) {
    .margin-md {
        margin: 1rem 0;
    }

    .margin-lg {
        margin: 3rem 0;
    }
}

@media (max-width: 479px) {
    .margin-lg {
        margin: 1.5rem 0;
    }
}

.max-number-line-text-md--2 {
    height: calc(24px * 2);
    overflow: hidden;
}

.min--100 {
    min-width: 100%;
    min-height: 100%;
}
.max--100 {
    max-height: 100%;
    max-width: 100%;
}
.max-min-width--100 {
    max-width: 100%;
    min-width: 100%;
}

.negative-top-sm {
    position: relative;
    top: -6rem;
}

@media (max-width: 479px) {
    .negative-top-md {
        position: relative;
        top: -1rem;
    }
}

.negative-top-md {
    position: relative;
    top: -12rem;
}

@media (max-width: 479px) {
    .negative-top-md {
        position: relative;
        top: -2rem;
    }
}

.opacity--8 {
    opacity: 0.8;
}

.overflow--hidden {
    overflow: hidden;
}

.pad-sm {
    padding: 0 17px;
}

.pad-md {
    padding: 0 30px;
}

@media (max-width: 479px) {
    .pad-md {
        padding: 0 1.5rem;
    }
}

.pad-right-sm {
    padding-right: 1rem;
}

.pad-top-sm {
     padding-top: 1rem;
 }

.pad-bottom-sm {
    padding-bottom: 1rem;
}

.prelative {
    position: relative;
}

.pabsolute {
    position: absolute !important;
}

.pfixed {
    position: fixed;
}

.psticky {
    position: sticky;
}

.global-pad-md {
    padding: 3rem;
}

@media (max-width: 479px) {
    .global-pad-md {
        padding: 1.5rem;
    }
}

.global-pad-sm {
    padding: 1rem;
}

.opacity--10-important{
    opacity: 1 !important;
}

.scroll-wrapper {
    overflow: hidden;
    width: 100%;
}
.scroll-horizontal {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
}
.scroll-horizontal::-webkit-scrollbar{
    display: none;
}

.text-center {
    text-align: center;
}
@media (max-width: 767px) {
    .text-center{
        text-align: left;
    }
}

.text-dark {
    color: #555;
}

.text-dark:hover {
    color: #555;
}

.text-dark--important {
    color: #555 !important;
}

.text-light {
    color: white;
}



.text-light--important {
    color: white !important;
}

.text-grey {
    color: #ccc;
}
.text-green {
    color: #ee008d;
}
.text-color-brand,
.text-color-brand:hover {
    color: #ee008d !important;
}

@media (max-width: 479px){
    .text-rotater{
        font-size: 16px;
    }
}

.title-xl {
    font-size: 24px;
}

.title-l {
    font-size: 16px;
}

.title-md {
    font-size: 14px;
}

.title-sm {
    font-size: 10px;
}

.to-right {
    right: 0;
}
.to-right.md {
    right: 30px;
}

.to-left {
    left: 0;
}
.to-left.md {
    left: 30px;
}

.vertical-align--middle {
    vertical-align: middle;
}

.white-space--nowrap {
    white-space: nowrap;
}

/* END CUSTOM */

/*RESET*/
hr {
    height: 1px;
}
.nav-tabs:before,
.nav:before {
    display: unset;
}
.nav-tabs > li > a {
    max-width: 45vw;
    padding: 10px;
    white-space: nowrap;
}

.uploadAvatar {
    border-radius: 5px;
    width: 90%;
    float: left;
    padding: 0;
}

.uploadAvatar .img-ul-upload, .uploadAvatar .img-ul-clear {
    box-shadow: none !important;
    padding: 0 !important;
    text-transform: capitalize !important;
    letter-spacing: unset !important;
    font-family: 'Poppins', sans-serif !important;
    border-radius: 5px;
    font-size: 16px !important;
    height: 34px !important;
    line-height: 34px !important;
    margin: unset !important;
    text-shadow: none !important;
    padding: 0 17px !important;
}

.uploadAvatar .img-ul-button[_ngcontent-c0]:active span[_ngcontent-c0] {
    top: unset !important;
}

.uploadAvatar .img-ul-upload {
    background-color: #ee008d !important;
}

.uploadAvatar .img-ul-clear {
    display: none !important;
}

.uploadAvatar .img-ul-drag-box-msg {
    display: none !important;
}

.uploadAvatar .img-ul-container {
    display: none !important;
}

.uploadAvatar .img-ul-file-upload {
    padding: 0 0 0 20px !important;
}

.top-cart {
    margin-top: 0 !important;
}

.ngx-pagination .current {
    background: #ee008d !important;
}

/*END RESET*/
