* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    cursor: none;
    color: #505050;
}

main {
    position: relative;
    width: 100%;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

.p-relative {
    position: relative;
}

.uid--font {
    font-family: 'uid_deepsea_2021news' !important;
    font-weight: 400 !important;
}

.text-green {
    color: #4FC950
}

.title-text {
    color: #000;
    font-size: 48px;
    font-weight: 600;
    line-height: 64px;
}

.title-text-uid {
    color: #000;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.31);
    font-size: 52px;
    font-weight: 450;
    line-height: 76px;
    letter-spacing: 1.56px;
}

.text-special {
    color: #4FC950;
    font-size: 62px;
    font-weight: 450;
    line-height: 64px;
    letter-spacing: 2.48px;
}

.row-gap-60 {
    row-gap: 60px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-15 {
    margin-bottom: 15px;
}

.title-box {
    width: fit-content;
    padding: 20px;
    border: 1px #368CDD solid;
    position: relative;
}

.title-box .selection-squre {
    width: 12px;
    height: 12px;
    border: 1px solid #368CDD;
    background: #FFF;
    position: absolute;
    z-index: 2;
}

.title-box .selection-squre.tl {
    top: -6px;
    left: -6px;
}

.title-box .selection-squre.tr {
    top: -6px;
    right: -6px;
}

.title-box .selection-squre.bl {
    bottom: -6px;
    left: -6px;
}

.title-box .selection-squre.br {
    bottom: -6px;
    right: -6px;
}

.button-box {
    margin: 0 auto;
    width: fit-content;
    padding: 10px;
    border: 1px #368CDD solid;
    position: relative;
    transition: 0.4s all;
}

.button-box::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50px;
    width: 52px;
    height: 52px;
    background-image: url('../img/arrow.png');
    background-repeat: no-repeat;
}

.button-box .selection {
    opacity: 1;
    transition: 0.4s all;
}

.button-box .selection-squre {
    width: 8px;
    height: 8px;
    border: 1px solid #368CDD;
    background: #FFF;
    position: absolute;
}

.button-box .selection-squre.tl {
    top: -4px;
    left: -4px;
}

.button-box .selection-squre.tr {
    top: -4px;
    right: -4px;
}

.button-box .selection-squre.bl {
    bottom: -4px;
    left: -4px;
}

.button-box .selection-squre.br {
    bottom: -4px;
    right: -4px;
}

.btn-action {
    display: inline-flex;
    width: fit-content;
    height: 60px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: linear-gradient(96deg, #4FC950 1.39%, #276327 142.16%);
    color: #FFF !important;
    font-family: 'uid_deepsea_2021news' !important;
    font-size: 32px;
    line-height: 0;
    letter-spacing: 0.96px;
    padding: 7px 30px 0;
    transition: 0.4s all;
}

.button-box:hover {
    border: 1px transparent solid;
}

.button-box:hover .btn-action {
    transform: rotate(5deg)
}

.button-box:hover .selection {
    opacity: 0;
}

@media (max-width: 991px) {
    br.hide-991 {
        display: none;
    }
}

@media (max-width: 767px) {
    .title-text {
        font-size: 40px;
        line-height: 54px;
    }

    .text-special {
        font-size: 50px;
        line-height: 52px;
    }
}

@media (max-width: 575px) {
    .title-text {
        font-size: 36px;
        line-height: 38px;
    }

    p {
        font-size: 16px;
    }

    .row-gap-60 {
        row-gap: 30px;
    }

    .btn-action {
        display: inline-flex;
        width: fit-content;
        height: 50px;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        background: linear-gradient(96deg, #4FC950 1.39%, #276327 142.16%);
        color: #FFF !important;
        font-family: "UID DEEPSEA 2021";
        font-size: 26px;
        line-height: 0;
        letter-spacing: 0.96px;
        padding: 7px 20px 0;
        transition: 0.4s all;
    }

    .button-box::after {
        bottom: -15px;
        width: 38px;
        height: 38px;
        background-size: cover;
    }
}

@media (max-width: 425px) {
    p {
        font-size: 14px;
    }
}

.tag-department {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 90px;
    height: 32px;
    padding: 10px;
    gap: 10px;
    font-family: 'uid_deepsea_2021news' !important;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.63px;
    border-radius: 100px;
    box-shadow: 0px 0px 9px 0px rgba(27, 27, 27, 0.18);
    border: 3px solid #FFF;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.tag-green {
    color: #FFF;
    background-color: #11AA59;
}

.tag-red {
    color: #FFF;
    background-color: #FF8577;
}

.tag-orange {
    color: #FFF;
    background-color: #ffae3e;
}

.tag-yellow {
    color: #FFF;
    background-color: #FFD966;
}

.tag-purple {
    color: #FFF;
    background-color: #9747FF;
}

.tag-blue {
    color: #FFF;
    background-color: #50b6ff;
}

.tag-pink {
    color: #FFF;
    background-color: #ff96ea;
}

.collapse:not(.show) {
    display: none
}

@media (prefers-reduced-motion:reduce) {
    .collapsing {
        transition: none
    }
}


/* -------------------------------------------- Navbar and menu --------------------------------------------- */
header {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    z-index: 998;
    transition: .4s width;
    margin: 20px auto 0;
    border-radius: 100px;
    background-color: #ffffff;
    box-shadow: 0px 0px 30px 5px rgb(223 247 217 / 50%);
    /* border: 1px #E4E4E4 solid; */
}

.header-fixed {
    position: fixed;
    top: 20px;
    margin: 0;
    transition: .5s cubic-bezier(.13, .04, .39, 1.3);
}

.navbar-toggler {
    font-size: 24px;
    padding: 10px 15px;
    background-color: #FFF;
    border: 1px #E5E5E5 solid;
    border-radius: 8px;
    transition: 0.3s font-size;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

.navbar-nav {
    align-items: center;
    gap: 30px;
}

.navbar-nav .nav-item .nav-link {
    font-size: 16px;
    font-weight: 500;
}

.navbar {
    padding: 10px 30px;
}

.navbar-brand img {
    max-width: 325px;
}

.header-initial {
    width: 410px;
}

.header-expanded {
    width: 68%;
}

.navbar-nav.hidden-navbar-nav {
    display: none;
    transform: translateY(10px);
}

.header-expanded .navbar-nav {
    display: flex;
    transform: translateY(0);
}

@media (max-width: 1399px) {
    .header-expanded {
        width: 80%;
    }
}

@media (max-width: 1199px) {
    .header-initial {
        width: 340px;
    }

    .header-expanded {
        width: 90%;
    }

    .navbar-brand img {
        max-width: 280px;
    }

    .navbar-nav {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .header-initial {
        width: calc(100% - 60px);
        box-shadow: none;
    }

    .header-expanded {
        width: 92%;
    }

    header {
        background-color: transparent;
        border-color: transparent;
        top: 0;
        border-radius: 40px;
    }

    .header-fixed {
        background-color: #FFF;
        transition: none;
        box-shadow: 0px 0px 30px 5px rgb(223 247 217 / 50%);
    }

    .navbar-nav.hidden-navbar-nav {
        display: flex;
        transform: none;
    }

    .navbar {
        padding: 30px;
    }

    .header-fixed .navbar {
        padding: 15px 30px;
    }

    .w-sm-100 {
        width: 100%;
    }

    .navbar-nav {
        gap: 0;
        padding: 15px 30px;
        background-color: #FFF;
        border: 1px #E5E5E5 solid;
        border-radius: 8px;
        margin-top: 12px !important;
    }

    .header-fixed .navbar-nav {
        background-color: transparent;
        border: none;
        padding: 0 15px;
    }

    .navbar-nav .nav-item {
        display: flex;
        justify-content: center;
        width: 100%;
        border-bottom: 1px #E4E4E4 solid;
        padding: 15px 0;
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-link {
        text-align: center;
        padding: 0;
    }

    .navbar-brand img {
        max-width: 250px;
    }

    .header-fixed .navbar-toggler {
        font-size: 26px;
        border-width: 0;
    }
}

@media (max-width: 767px) {
    .header-initial {
        width: calc(100% - 40px);
    }

    .navbar {
        padding: 15px 30px;
    }
}

@media (max-width: 575px) {
    .header-initial {
        width: calc(100% - 30px);
    }

    .navbar-brand img {
        max-width: 100%;
        width: 250px;
    }
}

@media (max-width: 425px) {
    .navbar-nav .nav-item .nav-link {
        font-size: 14px;
    }
}


/* -------------------------------------------- ปุ่มหลัก ขนาด md --------------------------------------------- */
.custom-button {
    pointer-events: auto;
    cursor: pointer;
    background: #179928;
    border: none;
    padding: 1.5rem 3rem;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    position: relative;
    display: inline-block;
}

.custom-button::before,
.custom-button::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.button--hyperion {
    font-size: 16px;
    font-weight: 600;
    padding: 9px 24px;
    overflow: hidden;
    color: #fff !important;
    border-radius: 50px;
}

.button--hyperion span {
    display: block;
    position: relative;
}

.button--hyperion>span {
    overflow: hidden;
}

.button--hyperion>span>span {
    overflow: hidden;
}

.button--hyperion:hover>span>span {
    animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
}

@keyframes MoveUpInitial {
    to {
        transform: translate3d(0, -105%, 0);
    }
}

@keyframes MoveUpEnd {
    from {
        transform: translate3d(0, 100%, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.button--hyperion::before {
    content: '';
    background: #4FC950;
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
    transform-origin: 100% 50%;
}

.button--hyperion:hover::before {
    transform: scale3d(0, 1, 1);
    transform-origin: 0% 50%;
}

@media (max-width: 425px) {
    .button--hyperion {
        font-size: 14px;
    }
}



/* -------------------------------------------- ปุ่มแบบวงกลม สำหรับ prev และ next --------------------------------------------- */
.button--fenrir {
    background: none;
    padding: 0;
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    width: 55px;
    height: 55px;
    font-family: aktiv-grotesk-extended, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.progressed {
    position: absolute;
    width: 50px;
    height: 50px;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.button--fenrir:hover .progressed {
    transform: scale3d(1.1, 1.1, 1);
}

.progress__circle,
.progress__path {
    fill: #FFF;
    stroke: #E4E4E4;
    stroke-width: 1px;
}

.progress__path {
    stroke: #a6a6a6;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    transition: stroke-dashoffset 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.button--fenrir:hover .progress__path {
    stroke-dashoffset: 0;
}

.owl-nav button:focus {
    outline: none;
}



/* ----------------------------------------------------------------------------------------------------- */
.custom-cursor {
    position: fixed;
    width: 32px;
    height: 32px;
    background: url('../img/cursor.png') no-repeat center center;
    background-size: contain;
    pointer-events: none;
    z-index: 999;
    transform: translate(-50%, -50%);
}

.custom-cursor.hidden {
    opacity: 0;
    /* ซ่อน custom cursor */
}

.custom-cursor::after {
    content: 'efin Intern';
    position: absolute;
    width: max-content;
    top: 26px;
    left: 26px;
    display: flex;
    padding: 6px 12px;
    justify-content: center;
    align-items: center;
    /* border: 1px solid var(--Border-Yellow, #CCA421); */
    background: var(--Background-Yellow, #FFCD29);
    box-shadow: 0px 4px 8px 0px rgba(255, 205, 41, 0.32);
    color: var(--Black, #000);
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
}

@media (max-width: 991px) {
    body {
        cursor: auto;
    }

    .custom-cursor {
        display: none;
    }
}



/* ----------------------------------------------------------------------------------------------------- */
.banner-padding {
    padding: 30px;
}

.banner {
    padding-top: 120px;
    width: 100%;
    border: 1px #E4E4E4 solid;
    border-radius: 20px;
    background-image: url('../img/banner-bg.png');
    background-repeat: repeat;
    position: relative;
}

.banner .title h1 {
    color: #000;
    text-align: center;
    font-size: 72px;
    line-height: 72px;
    letter-spacing: 1.45px;
    margin-top: -8px;
}

.hashtag {
    width: fit-content;
    color: #000;
    text-align: center;
    font-size: 24px;
    line-height: 72px;
    letter-spacing: 0.48px;
}

.banner .title p {
    color: #63A963;
    text-align: center;
    font-size: 40px;
    line-height: 72px;
    letter-spacing: 0.8px;
    margin-top: -12px;
}

.banner .character {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 30px;
}

.banner .character .vector-left {
    position: absolute;
    top: -100px;
    left: 220px;
    animation: floatUpDown2 1s ease-in-out infinite;
}

.banner .character .vector-right {
    position: absolute;
    top: -100px;
    right: 220px;
    animation: floatUpDown2 1s ease-in-out infinite;
}

.banner .vector-megaphone {
    position: absolute;
    top: 110px;
    left: -165px;
    animation: floatUpDown 1.5s ease-in-out infinite;
}

.banner .vector-rocket {
    position: absolute;
    top: 115px;
    right: -185px;
    animation: floatUpDown 1.5s ease-in-out infinite;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
        /* เริ่มที่ตำแหน่งปกติ */
    }

    50% {
        transform: translateY(-30px);
        /* เลื่อนขึ้น */
    }

    100% {
        transform: translateY(0);
        /* กลับมาตำแหน่งเดิม */
    }
}

@keyframes floatUpDown2 {
    0% {
        transform: translateY(0);
        /* เริ่มที่ตำแหน่งปกติ */
    }

    50% {
        transform: translateY(-10px);
        /* เลื่อนขึ้น */
    }

    100% {
        transform: translateY(0);
        /* กลับมาตำแหน่งเดิม */
    }
}

@media (max-width: 1199px) {
    .banner .vector-megaphone {
        top: 200px;
    }

    .banner .vector-rocket {
        top: 210px;
    }

    .banner .character .vector-left {
        left: 160px;
    }

    .banner .character .vector-right {
        right: 160px;
    }
}

@media (max-width: 991px) {
    .banner .title h1 {
        font-size: 64px;
    }

    .banner .vector-megaphone {
        max-width: 300px;
        left: -125px;
    }

    .banner .vector-rocket {
        max-width: 350px;
        right: -165px;
    }

    .banner .character .vector-left {
        max-width: 140px;
        left: 100px;
    }

    .banner .character .vector-right {
        max-width: 140px;
        right: 100px;
    }
}

@media (max-width: 767px) {
    .banner-padding {
        padding: 20px;
    }

    .banner .title h1 {
        font-size: 54px;
        line-height: 56px;
    }

    .banner .title p {
        font-size: 32px;
    }

    .banner .vector-megaphone {
        max-width: 280px;
        left: -125px;
    }

    .banner .vector-rocket {
        max-width: 320px;
        right: -125px;
    }

    .banner .character .vector-left {
        max-width: 100px;
        left: 40px;
        top: -40px;
    }

    .banner .character .vector-right {
        max-width: 100px;
        right: 40px;
        top: -40px;
    }
}

@media (max-width: 575px) {
    .banner-padding {
        padding: 15px;
    }

    .banner .title h1 {
        font-size: 42px;
        line-height: 44px;
    }

    .banner .title p {
        font-size: 26px;
    }

    .banner .vector-megaphone {
        max-width: 180px;
        left: -75px;
        top: 210px;
    }

    .banner .vector-rocket {
        max-width: 220px;
        right: -85px;
        top: 220px;
    }

    .banner .character .vector-left {
        max-width: 100px;
        left: 40px;
        top: -40px;
    }

    .banner .character .vector-right {
        max-width: 100px;
        right: 40px;
        top: -40px;
    }
}

@media (max-width: 425px) {
    .banner .character .vector-left {
        max-width: 70px;
        top: -20px;
        left: 20px;
        animation: floatUpDown2 1.5s ease-in-out infinite;
    }

    .banner .character .vector-right {
        max-width: 70px;
        top: -20px;
        right: 20px;
        animation: floatUpDown2 1.5s ease-in-out infinite;
    }
}




/* ----------------------------------------------------------------------------------------------------- */
.about {
    background-image: url('../img/about-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 100px;
    margin-bottom: 150px;
}

.about .card-img-container {
    margin-top: 140px;
}

.about .card-img-container .rotate--1 {
    transform: rotate(-5.577deg);
    position: relative;
    z-index: 4;
}

.about .card-img-container .rotate--2 {
    transform: rotate(9.111deg);
    position: relative;
    z-index: 2;
}

.about .card-img-container .rotate--3 {
    transform: rotate(6.516deg);
    position: relative;
    z-index: 3;
}

.about .card-img-container .rotate--4 {
    transform: rotate(-9.226deg);
    position: relative;
    z-index: 4;
}

.about .card-about .logo {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background-color: #000;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about .card-about .logo i {
    color: #FFF;
    font-size: 22px;
}

.about .card-about .department {
    color: #000;
    font-size: 48px;
    font-weight: 450;
    line-height: 64px;
    letter-spacing: 1.44px;
}

@media (max-width: 1199px) {
    .about .card-img-container {
        margin-top: 160px;
    }

    .about .card-img-container .row {
        row-gap: 120px;
    }

    .about .card-img-container .rotate--1 {
        transform: rotate(-1deg);
    }

    .about .card-img-container .rotate--2 {
        transform: rotate(-7.111deg);
    }

    .about .card-img-container .rotate--3 {
        transform: rotate(8.516deg);
    }

    .about .card-img-container .rotate--4 {
        transform: rotate(-1deg);
    }
}

/* @media (max-width: 767px) {
    .about .card-img-container .row {
        row-gap: 80px;
    }
} */

@media (max-width: 575px) {
    .about {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .about .card-img-container {
        margin-top: 100px;
        padding: 30px;
    }

    .about .card-about .department {
        font-size: 38px;
        line-height: 52px;
    }
}



/* ----------------------------------------------------------------------------------------------------- */
.mou {
    width: 100%;
    background-color: #FBFBFB;
    border: 1px #E4E4E4 solid;
    border-radius: 20px;
    background-image: url('../img/banner-bg.png');
    background-repeat: repeat;
    position: relative;
    padding: 90px;
    margin-top: 100px;
    margin-bottom: 100px;
}

.mou .mou-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 850px;
    margin: 0 auto;
}

/* .mou .mou-content .mou-grid {
    display: grid;
    grid-template-columns: repeat(3, 225px);
    gap: 16px;
    justify-content: center;
    margin-top: 50px;
}

.mou .card-mou {
    width: 100%;
    background-color: #FFF;
    border: 1px #E5E5E5 solid;
    border-radius: 12px;
    padding: 16px 48px;
    display: flex;
    justify-content: center;
    align-items: center;
} */

.mou .mou-content .mou-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 50px;
}

.mou .card-mou {
    flex: 0 0 225px;
    box-sizing: border-box;
    width: 100%;
    height: 125px;
    background-color: #FFF;
    border: 1px #E5E5E5 solid;
    border-radius: 12px;
    padding: 16px 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mou .card-mou img {
    max-width: 90px;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 991px) {
    .mou {
        padding: 90px 60px;
        height: auto;
    }

    .mou .mou-content {
        max-width: auto;
    }

    .mou .card-mou {
        flex: 0 0 calc(50% - 8px);
    }
}

@media (max-width: 767px) {
    .mou .card-mou {
        padding: 16px 46px;
    }
}

@media (max-width: 575px) {
    .mou {
        margin-top: 80px;
        margin-bottom: 50px;
        padding: 60px 30px;
    }

    .mou .mou-content .mou-grid {
        gap: 8px;
    }

    .mou .card-mou {
        flex: 0 0 calc(50% - 4px);
        padding: 16px 46px;
    }

    .mou .card-mou img {
        max-width: 100%;
        width: 90px;
    }
}

@media (max-width: 425px) {
    .mou .card-mou {
        flex: 0 0 calc(50% - 4px);
        min-height: 100px;
        padding: 12px 20px;
    }
    
    .mou .card-mou img {
        max-width: 100%;
        width: 90px;
    }
}





/* ----------------------------------------------------------------------------------------------------- */
.project {
    margin-top: 100px;
    margin-bottom: 100px;
}

.project .project-card {
    width: 100%;
    padding: 10px 10px 15px 10px;
    background-color: #FFF;
    border: 1px solid #E4E4E4;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project .project-card .project-img {
    width: 100%;
    height: 260px;
    border-radius: 20px;
}

.project .project-card .project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.project .project-card .project-name {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
    margin-top: 8px;
}

.project .project-card .created {
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 50%;
    /* gap: 12px; */
}

.project .project-card .created .creator-group {
    display: flex;
    position: relative;
}
  
.project .project-card .created .creator-item {
    position: relative;
    z-index: 1;
    margin-left: -10px;
}

.project .project-card .created .creator-item:first-child {
    margin-left: 0;
}

.project .project-card .created .creator-item img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff; /* White border for better visibility */
}

.project .project-card .created .creator-item img:not(:first-child) {
    margin-left: -10px;
}



.project .project-card .created p {
    color: rgba(0, 0, 0, 0.60);
    font-size: 13px;
    font-weight: 400;
    line-height: 120%;
}

.project .owl-nav {
    display: flex;
    justify-content: end;
    gap: 5px;
    margin-top: 20px;
}

#projectCarousel {
    margin-top: 20px;
}

#projectCarousel .item:nth-child(even) {
    margin-top: 100px;
}

#projectCarousel .owl-stage-outer {
    overflow: unset;
}

@media (max-width: 575px) {
    .project {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .project .project-card .project-name {
        font-size: 18px;
    }
}




/* ----------------------------------------------------------------------------------------------------- */
.review {
    width: 100%;
    /* height: 520px; */
    border: 1px #E4E4E4 solid;
    border-radius: 20px;
    background-image: url('../img/banner-bg.png');
    background-repeat: repeat;
    position: relative;
    padding: 90px 60px;
    margin-top: 100px;
    margin-bottom: 100px;
}

#reviewCarousel {
    width: 100%;
    margin-top: 20px;
}


.review .review-card {
    width: 100%;
    padding: 15px 15px 20px;
    background-color: #FFF;
    border: 1px #368CDD solid;
    position: relative;
    transform: scale(0.94);
}

.review .review-card .profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.review .review-card .profile .profile-img {
    width: 42px;
    height: 42px;
}

.review .review-card .profile .profile-img img {
    width: 42px;
    height: 42px;
    object-fit: cover;
}

.review .review-card .profile .name {
    color: #000;
    font-family: "FC Minimal";
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
}

.review .review-card .profile .university {
    color: #000;
    font-size: 13px;
    font-weight: 400;
    line-height: 27px;
}

.review .review-card .profile .position {
    display: flex;
    width: fit-content;
    height: 25px;
    padding: 0px 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background-color: #000;
    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 27px;
}

.review-card .selection-squre {
    width: 12px;
    height: 12px;
    border: 1px solid #368CDD;
    background: #FFF;
    position: absolute;
}

.review-card .selection-squre.tl {
    top: -5px;
    left: -5px;
}

.review-card .selection-squre.tr {
    top: -5px;
    right: -5px;
}

.review-card .selection-squre.bl {
    bottom: -5px;
    left: -5px;
}

.review-card .selection-squre.br {
    bottom: -5px;
    right: -5px;
}

.review-card .owl-nav {
    display: flex;
    justify-content: end;
    gap: 5px;
    margin-top: 20px;
}

/* .owl-nav button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px !important;
    height: 45px !important;
    border: 1px #E4E4E4 solid !important;
    background-color: #FFFFFF;
    cursor: pointer;
    color: var(--white);
    stroke: #FFF;
    border-radius: 50%;
    transition: all .4s ease-out;
    position: relative;
    margin: 0;
} */

@media (max-width: 1399px) {
    .title-text-uid {
        font-size: 50px;
    }
}

@media (max-width: 575px) {
    .review {
        margin-top: 50px;
        margin-bottom: 50px;
        padding: 60px 30px;
    }

    .title-text-uid {
        font-size: 40px;
        line-height: 56px;
    }
}



/* ----------------------------------------------------------------------------------------------------- */
.review2 {
    width: 100%;
    /* height: 545px; */
    border: 1px #E4E4E4 solid;
    border-radius: 20px;
    background-image: url('../img/banner-bg.png');
    background-repeat: repeat;
    position: relative;
    padding: 0 60px;
    margin-top: 100px;
    margin-bottom: 100px;
    overflow: hidden;
}

.review2 .review-grid {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 30px;
}

.review2 .title-wrapper {
    padding-top: 90px;
}

.review2 .character-wrapper img {
    width: 300px;
}

.review2 .post-it-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.review2 .post-it {
    width: 190px;
    height: 190px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.10);
    user-select: none;
}

.post-it--yellow {
    position: absolute;
    top: 40px;
    left: 170px;
    z-index: 2;
    background: #FFD966;
}

.post-it--red {
    position: absolute;
    left: 0px;
    bottom: 160px;
    z-index: 1;
    background: #FFAFA3;
    transform: rotate(-3.5deg);
}

.post-it--pink {
    position: absolute;
    top: 110px;
    right: 235px;
    z-index: 3;
    background: #FFBDF2;
    transform: rotate(6.5deg);
}

.post-it--green {
    position: absolute;
    bottom: 50px;
    left: 210px;
    z-index: 1;
    background: #85E0A3;
    transform: rotate(4deg);
}

.post-it--blue {
    position: absolute;
    bottom: 95px;
    right: 100px;
    z-index: 4;
    background: #80CAFF;
    transform: rotate(-6.5deg);
}

.review2 .post-it .stamps {
    width: 50px;
    height: 50px;
    user-select: none;
}

.post-it.post-it--yellow .stamps {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 70px;
    left: -20px;
    transform: rotate(-25deg);
}

.post-it.post-it--red .stamps {
    position: absolute;
    bottom: 50px;
    right: 5px;
}

.post-it.post-it--pink .stamps {
    position: absolute;
    top: 60px;
    right: -25px;
}

.post-it.post-it--green .stamps {
    position: absolute;
    bottom: 50px;
    right: 10px;
}

.post-it.post-it--blue .stamps {
    position: absolute;
    bottom: 45px;
    right: -20px;
}

.review2 .post-it .review-text {
    color: #333;
    font-family: 'uid_deepsea_2021news';
    font-size: 20px;
    line-height: 22px;
}

.review2 .profile {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review2 .profile .profile-img {
    width: 42px;
    height: 42px;
}

.review2 .profile .profile-img img {
    width: 42px;
    height: 42px;
    object-fit: cover;
}

.review2 .profile .name {
    color: #000;
    font-size: 12px;
    font-weight: 600;
    line-height: 12px;
}

.review2 .profile .university {
    color: rgba(0, 0, 0, 0.60);
    font-size: 9px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 1399px) {
    .post-it--pink {
        top: 110px;
        right: 115px;
    }

    .post-it--blue {
        bottom: 80px;
        right: 0px;
    }
}

@media (max-width: 1199px) {
    .review2 .post-it {
        width: 170px;
        height: 170px;
    }

    .post-it--yellow {
        top: 30px;
        left: 140px;
    }

    .post-it--red {
        left: -10px;
        bottom: 205px;
    }

    .post-it--pink {
        top: 110px;
        right: 0px;
    }

    .post-it--green {
        bottom: 40px;
        left: 90px;
    }

    .post-it--blue {
        bottom: 80px;
        right: 20px;
    }
}

@media (max-width: 991px) {
    .review2 {
        padding: 90px 60px;
    }

    .review2 .character-wrapper img {
        width: 260px;
    }

    .review2 .title-wrapper {
        padding-top: 0;
    }

    .review2 .post-it-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        align-items: center;
        justify-content: center;
        height: auto;
        margin-top: 60px;
    }

    .review2 .post-it {
        width: 170px;
        height: 170px;
        padding: 12px;
        flex: 0 0 170px;
        position: relative;
        top: unset;
        right: unset;
        bottom: unset;
        left: unset;
    }

    .review2 .post-it .stamps {
        width: 40px;
        height: 40px;
    }

    .review2 .post-it .review-text {
        font-size: 18px;
        line-height: 20px;
    }
}

@media (max-width: 575px) {
    .review2 {
        padding: 60px 30px;
    }

    .review2 .post-it-wrapper {
        gap: 15px;
        margin-top: 50px;
    }

    .review2 .post-it {
        width: 100%;
        height: 180px;
        flex: 0 0 47%;
        transform: unset;
        padding: 14px;
    }
}

@media (max-width: 425px) {
    .review2 .post-it {
        width: 220px;
        height: 220px;
        flex: none;
        padding: 14px;
    }

    .review2 .post-it .review-text {
        font-size: 20px;
        line-height: 22px;
    }
}



/* ----------------------------------------------------------------------------------------------------- */
.faq {
    margin-top: 100px;
    margin-bottom: 100px;
}

.faq .faq-box {
    max-width: 850px;
    margin: 60px auto 0;
}

.faq .accordion-button {
    border-color: #E4E4E4 !important;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    border-radius: 8px;
}

.faq .accordion-button:not(.collapsed) {
    background-color: #FFF;
}

.faq .accordion-button:focus {
    outline: 0;
    box-shadow: none;
}

.faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}


.faq .accordion-item .accordion-button {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq .accordion-body {
    padding: 16px 25px;
    border-bottom: 1px #E4E4E4 solid;
    font-size: 16px;
    line-height: normal;
    border-radius: 8px;
}

.faq .accordion-item {
    margin-bottom: 24px;
}

.faq .accordion-button.collapsed {
    border-bottom-width: 1px;
    border-radius: 8px !important;
}

.faq .accordion-collapse {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

@media (max-width: 575px) {
    .faq {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .faq .accordion-button {
        font-size: 16px;
    }
}

@media (max-width: 425px) {
    .faq .accordion-body {
        font-size: 14px;
    }
}



/* ----------------------------------------------------------------------------------------------------- */
.banner-bottom {
    width: 100%;
    border: 1px #E4E4E4 solid;
    border-radius: 20px;
    background-image: url('../img/banner-bg.png');
    background-repeat: repeat;
    position: relative;
    padding: 30px 60px;
    margin-top: 100px;
    margin-bottom: 100px;
}

.banner-bottom .title-box {
    user-select: none;
    height: 240px;
}

.banner-bottom .title-box p {
    color: #818181;
    font-size: 28px;
    line-height: 64px;
    letter-spacing: 0.84px;
}

.banner-bottom .title-box .tag {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    will-change: transform;
    pointer-events: none;
}

.banner-bottom .title-box canvas {
    position: absolute;
    top: 0;
    left: 0;
}

.banner-bottom .button:hover a {
    transform: rotate(5deg)
}

.banner-bottom .button:hover::before {
    bottom: -52px;
    left: 0px;
    opacity: 0;
}

.banner-bottom .button:hover::after {
    bottom: -35px;
    left: 50px;
}

.banner-bottom .button {
    position: relative;
    transition: 0.4s ease-in-out;
}

.banner-bottom .button::before {
    content: "Intern";
    position: absolute;
    bottom: -85px;
    left: -145px;
    font-size: 12px;
    font-weight: 500;
    padding: 1px 12px;
    background-color: #FFCD29;
    color: #FFF;
    transition: 0.4s cubic-bezier(0.215, 0.610, 0.355, 1), opacity 0.1s ease-out;
    pointer-events: none;
}

.banner-bottom .button::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: -100px;
    width: 52px;
    height: 52px;
    background-image: url('../img/arrow.png');
    background-repeat: no-repeat;
    transition: 0.4s cubic-bezier(0.215, 0.610, 0.355, 1);
    pointer-events: none;
}

@media (max-width: 991px) {
    .banner-bottom .button::before {
        display: none;
    }

    .banner-bottom .button::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .banner-bottom .title-box {
        height: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .banner-bottom .title-box p {
        font-size: 24px;
        line-height: 28px !important;
    }

    .banner-bottom .title-box .title-text {
        font-size: 38px;
    }
}

@media (max-width: 575px) {
    .banner-bottom {
        margin-top: 50px;
        margin-bottom: 50px;
        padding: 60px 30px;
    }

    .banner-bottom .title-box {
        height: 340px;
    }

    .banner-bottom .title-box p {
        color: #818181;
        font-size: 22px;
        line-height: 30px !important;
    }
}



/* ----------------------------------------------------------------------------------------------------- */
.card-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    user-select: none;
}

.block-select.website .resizable-box {
    border-top-right-radius: 0px;
}

.resizable-box {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    border: 1px solid #d5d5d5;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    transition: all 0.3s ease;
}

.resize-handle {
    width: 12px;
    height: 12px;
    border: 1px solid #007bff;
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
    user-select: none;
}

.block-select.website .resize-handle:active {
    background-color: #007bff;
}

.top-left {
    top: 12px;
    left: 12px;
}

.top-right {
    top: 12px;
    right: 12px;
}

.top-rights {
    top: 12px;
    right: 12px;
}

.bottom-left {
    bottom: 12px;
    left: 12px;
}

.bottom-right {
    bottom: 12px;
    right: 12px;
}

/* Text with hand-written font */
.border-radius-value {
    margin-top: 20px;
    text-align: center;
}

/* Message text with hand-written font and angled style */
.warning-text,
.angle-text {
    font-family: 'uid_deepsea_2021news' !important;
    color: #007bff;
    font-size: 24px;
    position: absolute;
    text-align: center;
    z-index: 10;
}

.top-left-text {
    top: -60px;
    left: -20px;
}

.top-right-text {
    top: -60px;
    right: -20px;

}

.bottom-left-text {
    bottom: -60px;
    left: -20px;
}

.bottom-right-text {
    bottom: -60px;
    right: -20px;
}

.info-text {
    font-family: 'uid_deepsea_2021news' !important;
    font-size: 20px;
    color: #ff0033;
    text-align: center;
    position: absolute;
    top: -125px;
    right: 10px;
    letter-spacing: 1.5px;
    line-height: normal;
}

.info-text.graphic {
    top: -95px;
    right: 10px;
    vertical-align: middle;
}

/* Warning text */
.warning-text {
    display: none;
    color: #e74c3c;
    font-size: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 100;
}

.arrow {
    position: absolute;
    top: -30px;
    right: 24px;
    font-size: 30px;
    color: #007bff;
}

.smile-icon {
    position: absolute;
    top: -80px;
    /* Adjusted to place it at the top-right corner */
    right: 40px;
    /* Adjusted to place it at the top-right corner */
    font-size: 40px;
    animation: floatUp 2s ease-in-out forwards;
    display: none;
    /* Initially hidden */
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -70%) scale(1.2);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -90%) scale(1);
    }
}

.block-select {
    border: 1px solid #2196F3;
    padding: 8px 8px;
    position: relative;
    width: 100%;
}

.block-select .rec1 {
    width: 12px;
    height: 12px;
    border: 1px solid #2196f3;
    background-color: #fff;
    position: absolute;
    left: -6px;
    top: -6px;
}

.block-select .rec2 {
    width: 12px;
    height: 12px;
    border: 1px solid #2196f3;
    background-color: #fff;
    position: absolute;
    right: -6px;
    top: -6px;
}

.block-select .rec3 {
    width: 12px;
    height: 12px;
    border: 1px solid #2196f3;
    background-color: #fff;
    position: absolute;
    right: -6px;
    bottom: -6px;
}

.block-select .rec4 {
    width: 12px;
    height: 12px;
    border: 1px solid #2196f3;
    background-color: #fff;
    position: absolute;
    left: -6px;
    bottom: -6px;
}

.resizable-box .text {
    margin-top: 30px;
    margin-left: 15px;
    font-size: 21px;
    font-weight: 600;
    color: #000;
}

.resizable-box .text ul {
    list-style: none;
}

.resizable-box.graphic .text ul {
    list-style: none;
    margin-bottom: 0;
}

.resizable-box .text li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.resizable-box .text li i {
    font-size: 6px;
}

.resizable-box .character {
    width: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -20px;
    margin-left: auto;
    margin-right: auto;
}

.arrow svg {
    width: 80px;
    height: 80px;
    position: relative;
    top: -30px;
    left: -10px;
}

.arrow.graphic svg {
    width: 80px;
    height: 100px;
    transform: scaleX(-1) rotate(10deg);
    top: 0;
    left: 0;
}

svg .draw-arrow {
    stroke-width: 5;
    stroke: #4fc950;
    fill: none;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-name: draw;
}

svg .draw-arrow.tail-1 {
    animation-delay: 0.5s;
}

svg .draw-arrow.tail-2 {
    animation-delay: 1.3s;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

.block-select.website .top-right:before {
    content: "";
    position: relative;
    display: block;
    width: 300%;
    height: 300%;
    box-sizing: border-box;
    margin-left: -100%;
    margin-top: -100%;
    border-radius: 45px;
    background-color: #027bff;
    -webkit-animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}


@-webkit-keyframes pulse-ring {
    0% {
        transform: scale(0.33);
    }

    80%,
    100% {
        opacity: 0;
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.33);
    }

    80%,
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes pulse-dot {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.8);
    }
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.8);
    }
}

@media (max-width: 1399px) {
    .info-text {
        top: -125px;
        right: 40px;
    }
}

@media (max-width: 1199px) {
    .info-text {
        top: -125px;
        right: -10px;
    }

    .resize-handle {
        width: 9px;
        height: 9px;
    }
}

@media (max-width: 991px) {
    .info-text {
        top: -100px;
        right: -10px;
    }

    .resize-handle {
        width: 12px;
        height: 12px;
    }

    .arrow svg {
        top: -10px;
    }
}

@media (max-width: 767px) {
    .block-select {
        padding: 5px;
    }

    .resize-handle {
        width: 10px;
        height: 10px;
    }

    .arrow svg {
        width: 60px;
        height: 60px;
        position: relative;
        top: -10px;
        left: 5px;
    }

    .block-select .rec1,
    .block-select .rec2,
    .block-select .rec3,
    .block-select .rec4 {
        width: 9px;
        height: 9px;
    }

    .resizable-box .text {
        margin-top: 15px;
        font-size: 17px;
        font-weight: 500;
    }
}

@media (max-width: 575px) {
    .resizable-box .character {
        width: 200px;
        margin-top: -30px;
    }

    .resizable-box .text {
        font-size: 14px;
    }
}

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

    .warning-text,
    .angle-text {
        font-size: 18px;
    }
}


.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
}

.loading-hidden {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.loading-text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    width: 100%;
    height: 100px;
    line-height: 100px;
}

.loading-text span {
    display: inline-block;
    margin: 0 5px;
    color: #4FC950;
    font-family: "FC Minimal";
    font-weight: 700;
}

.loading-text span:nth-child(1) {
    filter: blur(0px);
    -webkit-animation: blur-text 1s 0s infinite linear alternate;
    animation: blur-text 1s 0s infinite linear alternate;
}

.loading-text span:nth-child(2) {
    filter: blur(0px);
    -webkit-animation: blur-text 1s 0.1s infinite linear alternate;
    animation: blur-text 1s 0.1s infinite linear alternate;
}

.loading-text span:nth-child(3) {
    filter: blur(0px);
    -webkit-animation: blur-text 1s 0.2s infinite linear alternate;
    animation: blur-text 1s 0.2s infinite linear alternate;
}

.loading-text span:nth-child(4) {
    filter: blur(0px);
    -webkit-animation: blur-text 1s 0.3s infinite linear alternate;
    animation: blur-text 1s 0.3s infinite linear alternate;
}

.loading-text span:nth-child(5) {
    filter: blur(0px);
    -webkit-animation: blur-text 1s 0.4s infinite linear alternate;
    animation: blur-text 1s 0.4s infinite linear alternate;
}

.loading-text span:nth-child(6) {
    filter: blur(0px);
    -webkit-animation: blur-text 1s 0.5s infinite linear alternate;
    animation: blur-text 1s 0.5s infinite linear alternate;
}

.loading-text span:nth-child(7) {
    filter: blur(0px);
    -webkit-animation: blur-text 1s 0.6s infinite linear alternate;
    animation: blur-text 1s 0.6s infinite linear alternate;
}

@-webkit-keyframes blur-text {
    0% {
        filter: blur(0px);
    }

    100% {
        filter: blur(2px);
    }
}

@keyframes blur-text {
    0% {
        filter: blur(0px);
    }

    100% {
        filter: blur(2px);
    }
}



.color-picker-wrap {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
}
.colorPicker {
    width: 100%;
    background: white;
    border: 0px solid rgba(0, 0, 0, 0.247059);
    box-shadow: rgba(0, 0, 0, 0.247059) 0px 1px 4px;
    border-radius: 4px;
    position: relative;
}

.colorPicker .colorList {
    display: flex;
    gap: 4px;
    padding: 10px;
    cursor: pointer;
}

.colorPicker .colorContainer {
    width: 25px;
    height: 25px;
    cursor: pointer;
    float: left;
    border-radius: 2px;
}

.colorPicker .inputContainer {
    position: relative;
}

.colorPicker .hexIcon {
    width: 25px;
    height: 25px;
    background: #f0f0f0;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
    float: left;
    color: #98a1a4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.colorPicker .inputContainer input {
    width: 60px;
    height: 25px;
    font-size: 12px;
    color: #666666;
    border: 0px;
    outline: none;
    box-shadow: #f0f0f0 0px 0px 0px 1px inset;
    border-radius: 0 4px 4px 0;
    float: left;
    padding-left: 8px;
}

.activeColor {
    border: 2px solid #2196F3;
}

@media (max-width: 767px) {
    .arrow.graphic svg {
        width: 60px;
        height: 60px;
        position: relative;
    }
}

@media (max-width: 425px) {
    .color-picker-wrap {
        bottom: 20px;
    }

    .colorPicker .colorList {
        width: 136px;
        flex-wrap: wrap;
    }

    .colorPicker .colorContainer {
        width: 20px;
        height: 20px;
    }
}