:root {
	/* --primary-color2: #ff9900; */
	--primary-color: #ee1b24;
	--primary-color2: #0f75bd;
	--color-title: #0f75bd;
	--color-icon: #0f75bd;
	--text-color: #212121;
	--border-color: #212121;
}

/** Icon */

.icon-svg svg {
    width: 16px;
    height: 16px;
}

.icon-svg svg[width], 
.icon-svg svg[height] {
    width: revert !important;
    height: revert !important;
}

/* Text */

.uppercase {
    text-transform: uppercase !important;
}

.text-bold {
    font-weight: 600;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--primary-color2) !important;
}

.text-color {
    color: var(--text-color);
}

.text-sm {
    display: none;
}

.text-middle {
    vertical-align: middle;
}

/** Button */

.bg-primary {
    background-color: var(--primary-background) !important;
}

.btn-primary {
    background-color: var(--primary-background) !important;
    border-color: var(--primary-background) !important;
}

.btn-ghost {
    border: 1px solid var(--primary-background) !important;
}

/* Background */

.background-css {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}

.background-fixed-css {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
    background-attachment: fixed;
}

.background-fixed {
    background-attachment: fixed;
}

.background-over {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: .6;
}

/** input & diff */

.cursor {
    cursor: pointer;
}

.relative {
    position: relative;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.line-through {
  text-decoration: line-through;
}

.color-primary {
  color: var(--primary-color);
}

.color-2 {
  color: var(--primary-color2);
}

.two-text-line {
  display: -webkit-box!important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form-group .title-input {
    margin-bottom: 5px;
}

.box-text-success {
    background-color: #efffef;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #befdbe;
}

.empty-elm {
    padding: 50px 0;
}

.header-logo img,
img.logo-header {
    max-height: 50px;
}

@media (max-width: 990px){
    .container {
        max-width: 90%;
    }
}

@media (max-width: 767px){
    .text-sm {
        display: block;
    }
}

/* section */

section[class^="module-"]:nth-child(2n) {
    background-color: #f9f9f9;
}
section[class^="module-"]:nth-child(2n + 1) {
    background-color: #f5f5f5;
}

.section-desc p:last-child {
    margin-bottom: 0;
}

/* line element */

.title-line-box {
    margin-bottom: 30px !important;
    font-weight: 700;
    color: #000;
    font-size: 25px;
}

.title-line-box .title-line {
    width: 80px;
    border-bottom: 3px solid var(--primary-background);
    text-align: center;
    margin: 10px auto 0;
}

/* Svg loading */

.loading-svg {
    color: var(--primary-color2);
}

.loading-svg svg {
    width: 20px;
    height: 20px;
}

/* related */

.related {
    padding: 50px 0;
}

/* swiper */

.default-swiper {
    width: 100%;
    /* height: 300px; */
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.swiper-thumnail {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.swiper-thumnail .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.swiper-thumnail .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

[class^="swiper-button-"]
{
    /* position: relative; */
    width: 55px;
    height: 55px;
    color: #ffffff;
    /* line-height: 55px; */
    /* text-align: center; */
    /* font-size: 22px; */
    margin-left: 2px;
    background-color: #222222;
    /* display: inline-block; */
}

[class^="swiper-button-"]:after {
    font-size: 20px
}

@media (max-width: 1300px) {
    .container {
        max-width: 90%;
    }
}