/* check sources is deployed! */
/* Global variables and global ultils */
.slide-down {
    animation: slideDown 0.25s forwards;
    /* Sử dụng animation cho hiệu ứng trượt xuống */
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5%);
    }

    to {
        opacity: 1;
        transform: translateY(0%);
    }
}



.wraper-container {
    display: flex;
}


/* Sidebar --------------------------------- */
.sidebar {
    width: 270px;
    background-color: var(--blue-100);
    height: 100vh;
}

.sidebar .head {
    display: flex;
    height: 74px;
    /* justify-content: center;
     */
    padding-left: 40px;
    align-items: center;
}

.head .logo {
    display: inline-block;
    width: 124px;
    height: 40px;
}

.head .logo img {
    width: 100%;
    height: 100%;
}


/* --------------MENU---------------- */
.sidebar .menu {
    display: flex;
    flex-direction: column;
}

.menu-items {
    display: flex;
    flex-direction: column;
}

.menu .menu-title {
    height: 35px;
    padding-left: 40px;
    margin-top: 40px;
    font-weight: 700;
    line-height: 14.62px;
    color: var(--gray-50);
}

/* menu-item without active and hover ----------- begin */
.menu-item [class^="icon-"] {
    width: 20px;
    height: 20px;
    font-size: 20px;
    color: var(--gray-50);
    transition: all 0.25s;
    transform: rotate(0deg);
}

.menu-item .menu-name {
    display: flex;
    height: 52px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex: 1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 17.05px;
    color: var(--gray-50);
    padding-left: 40px;
    transition: all 1s;
}

.menu-name .parent-menu-name {
    color: var(--gray-50);
    font-size: 14px;
    font-weight: 500;
    line-height: 17.05px;
}

/* Menu-item HAS SUB-MENU---- */
.menu-name-icon {
    display: flex;
    color: var(--gray-50);
    height: 52px;
    align-items: center;
    gap: 10px;
    padding-left: 40px;
    padding-right: 20px;
    transition: all 0.25s;
    font-size: 14px;
}

.menu-name-icon .parent-menu-name {
    flex: 1;
    color: var(--gray-50);
    font-size: 14px;
    font-weight: 500;
    line-height: 17.05px;
}

.sub-menu {
    display: none;
}

.sub-menu-item {
    display: flex;
    align-items: center;
}

.sub-menu .sub-menu-item .menu-name {
    display: flex;
    height: 52px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex: 1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 17.05px;
    color: var(--gray-50);
    padding-left: 70px;
    background-color: var(--blue-100);
}

/* --------End */


/* menu-item with active and hover ----------- begin active*/

.menu-item .menu-name:hover [class^="icon-"],
.menu-item .menu-name:hover .parent-menu-name,

.menu-item.active .menu-name [class^="icon-"],
.menu-item.active .menu-name .parent-menu-name {
    color: var(--white);
}

.menu-item.active>.menu-name,
.menu-item .menu-name:hover {
    background-color: var(--blue-95);
}

/* Menu-item HAS SUB-MENU---- */
.menu-item .menu-name-icon:hover [class^="icon-"],
.menu-item .menu-name-icon:hover .parent-menu-name,

.menu-item.active .menu-name-icon [class^="icon-"],
.menu-item.active .menu-name-icon .parent-menu-name {
    color: var(--white);
}

.menu-item .menu-name-icon:hover,
.menu-item.active .menu-name-icon {
    background-color: var(--blue-95);
}



.menu-item.active .menu-name-icon .icon-arrow-down-style2 {
    transform: rotate(180deg);
    transition: all 0.25s;
}

.sub-menu.active {
    display: flex;
    flex-direction: column;
}

.sub-menu-item .menu-name:hover,
.sub-menu-item .menu-name.active {
    color: var(--white);
    background-color: var(--blue-95);
}


/*-----------end active*/
/* End sidebar ----------------------------- */


/* Content ------------------------------ */
.content {
    max-height: calc(100vh - 74px);
    box-sizing: border-box;
    overflow-y: auto;
    scrollbar-width: 6px;
    scrollbar-color: var(--gray-20);
}

.content::-webkit-scrollbar {
    width: 6px;
}

.content::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #e4e5e9;
}


/* End content ------------------------------ */
/* Header ----------------------------------- */
.container-header-content {
    display: flex;
    flex-direction: column;
    width: calc(100% - 270px);
}

.header {
    height: 74px;
    width: 100%;
    display: flex;
    border-bottom: 1px solid #EAEBEF;
    align-items: center;
}

.wrap-header {
    width: 100%;
}

.wrap-header .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
}

/* Header title ------------------------------- */
.header-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 34.1px;
    color: var(--blue-100);
}

.search-clearcache-userprofile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* End Header title ----------------------------- */

/* global search -------------------------------- */
.global-search {
    width: 320px;
    border: 1px solid var(--gray-20);
    border-radius: 6px;
    height: 40px;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    box-sizing: border-box;
}

.border-radius-bottom-none {
    border-radius: 6px 6px 0px 0px;
}

.global-search .global-search-form input {
    border: none;
    width: 568px;
    height: 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 17.05px;
    color: var(--gray-100);
}

.global-search-form .input-group {
    display: flex;
    align-items: center;
    width: 300px;
}

.global-search-form .input-group input::placeholder {
    font-weight: 400;
    font-size: 14px;
    line-height: 17.05px;
    color: var(--gray-100);
}

.global-search-form .input-group .icon-search {
    display: flex;
    align-items: center;
}

.global-search .global-search-form input:focus-visible {
    outline: none;
}

/* Search response ------------------------------------------ */
.global-search .global-search-form .global-search-response {
    position: absolute;
    margin-top: 10px;
    left: -1px;
    border-top: none;
    width: 600px;
    box-sizing: border-box;
    padding: 16px;
    display: none;
    border-radius: 0px 0px 6px 6px;
}

.global-search .global-search-form .global-search-response.active.responsed {
    border: 1px solid var(--gray-20);
    background: var(--white);
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    z-index: 10;
}

.global-search-response .wrap-list-items {
    gap: 4px;
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
}

.wrap-list-items .title-see-all {
    display: flex;
    justify-content: space-between;

}

.wrap-list-items.bottom-line {
    border-bottom: 1px solid var(--gray-20);
}


.title-see-all .title {
    font-size: 12px;
    font-weight: 700;
    line-height: 14.62px;
    color: var(--gray-100);
}

.title-see-all .see-all-result-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 17.05px;
    color: var(--gray-100);
    text-decoration: none;
}

.title-see-all .see-all-result-text:hover {
    color: var(--orange-100);
}

.list-items .item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 6px 12px 6px 12px;
    border-radius: 4px;
}

.list-items .item:hover {
    background: var(--gray-10);
}

.list-items .item .image-thumbnail {
    border-radius: 4px;
}

.list-items .item .name-image {
    display: flex;
    align-items: center;
    column-gap: 16px;
}

.list-items .item .item-name span{
    display: block;
    clear: both;
    color: #838383;
    border-radius: 4px;
    padding: 1px 0;
    margin: 0;
    font-size: 12px;
    line-height: 1;
}
.list-items .item .item-name {
    font-size: 14px;
    text-decoration: none;
    color: var(--blue-100);
    font-weight: 700;
    line-height: 17.05px;
}

.list-items .item .item-category {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-100);
}

/* Delete cloudfront Cache -------------------------------- */
.menu-header .delete-cache-form .clear-cache:hover{
    background: #e0e0e0;
}
.menu-header .delete-cache-form .clear-cache {
    background: var(--gray-10);
    padding: 10px 16px 10px 16px;
    border-radius: 4px;
    width: 188px;
    height: 40px;
    border: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--blue-100);
    text-decoration: none;
}

/* Profile ----------------------------------------------- */
.search-clearcache-userprofile .dropdown.user-profile {
    width: 195px;
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    border-radius: 6px;
    padding: 10px;
    box-sizing: border-box;
}

.search-clearcache-userprofile .dropdown.user-profile:hover {
    background-color: var(--gray-10);
}

.background-hover {
    background-color: var(--gray-10);
}

.search-clearcache-userprofile .dropdown.user-profile .user-info {
    display: flex;
    align-items: center;
    gap: 17px;
}

.user-profile .wrap-user-image {
    height: 40px;
    width: 40px;
}

.user-profile .user-image {
    width: 40px;
    height: 40px;
    border-radius: 100px;
}

.user-profile .user-info {
    text-decoration: none;
}

.user-profile .user-name-text {
    font-weight: 700;
    font-size: 14px;
    line-height: 17.05px;
    color: var(--blue-100);
}

.user-profile .role-text {
    font-size: 12px;
    font-weight: 400;
    line-height: 14.62px;
    color: var(--gray-100);
}

.user-profile .dropdown-list {
    position: absolute;
    background-color: var(--white);
    border: 1px solid #EAEBEF;
    width: 164px;
    display: none;
    flex-direction: column;
    top: 72px;
    height: 106px;
    border-radius: 5px;
    padding: 16px 0px 16px;
    box-sizing: border-box;
    transition: opacity 0.5s ease, transform 0.25s ease;
    width: 195px;
    left: 0px;
    z-index: 10;
}

.user-info .dropdown-toggle {
    display: none;
}

.user-profile .dropdown-list.show {
    display: flex;
}

.user-profile .dropdown-list .item-action {
    padding: 10px 20px 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.user-profile .dropdown-list .item-action:hover {
    background-color: var(--gray-10);
}

.user-profile .dropdown-list .item-action .size-icon {
    width: 16px;
    height: 16px;
    color: var(--gray-100);
}

.user-profile .dropdown-list .item-action .action-text {
    font-size: 14px;
    text-decoration: none;
    font-weight: 400;
    line-height: 17.05px;
    color: var(--gray-100);
}

/* End profile -------------------------------------------- */


/* End header ------------------------------------------------ */


/* Footer ------------------------------------------------------
*/

.footer {
    min-height: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--gray-20);
    padding: 0px 40px;
    box-sizing: border-box;
}

.copyright {
    font-size: 12px;
    line-height: 14.62px;
    font-weight: 400;
    color: var(--blue-100);
}

/* End footer---------------------------------------------------
 */

.select2-material{
    width: 100%;
}
.col-6, .col-sm-6{
    width: 50%;
    margin: 0 6px;
}
.roof-skeleton-repeater .skeleton_bone{
    margin: 10px 0;
}
.roof-skeleton-repeater [type="number"]{
    width: 100%;
}
.roof-item{
    margin-top: 10px;
}
[data-repeater-list="roofSkeletonCorrection"]{
    margin-top: 10px;
}
.roofSkeletonCorrectionTemplate,
.cornerTrimTemplate{
    display: none;
}