﻿/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.jcarousel-list {
    z-index: 1;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
	height: 21px;
}

/**
 * The buttons are added dynamically by jCarousel before
 * the <ul> list (inside the <div> described above) and
 * have the classnames "jcarousel-next" and "jcarousel-prev".
 */
.jcarousel-next {
    z-index: 3;
    display: none;
}

.jcarousel-prev {
    z-index: 3;
    display: none;
}

/*user theme*/
    /**
     * This <div> element is wrapped by jCarousel around the list
     * and has the classname "jcarousel-container".
     */
    .jcarousel-container {
        position: relative;
		width: 352px;
		height: 30px;	
		overflow: hidden;
		padding: 0 25px;
    }

    .jcarousel-clip {
        z-index: 2;
        padding: 0;
        margin: 0;
        overflow: hidden;
        position: relative;
    	width: 352px;
    }

    .jcarousel-list {
        z-index: 1;
        overflow: hidden;
        position: relative;
        top: 0;
        left: 0;
        margin: 0;
        padding: 0;
    }
	
    .jcarousel-list li,
    .jcarousel-item {
        float: left;
        list-style: none;
        height: 20px;
		width: 70px;
    }
    .jcarousel-clip .jcarousel-list li.Hover,
    .jcarousel-clip .jcarousel-list li.Active {
		
    }
	
	.jcarousel-list li a:link,
	.jcarousel-list li a:visited {
		width: 70px;
		height: 20px;
		text-align: center;
		color: #91a1a9;
		display: block;
		line-height: 18px;
	}
	.jcarousel-list li a:hover,
	.jcarousel-list li.Active a:link,
	.jcarousel-list li.Active a:visited,
	.jcarousel-list li.Active a:hover {
		color: #a3bdca;
		background-position: 0 -18px;
	}

    .jcarousel-next,
    .jcarousel-prev {
        z-index: 2;
        display: none;
        position: absolute;
        width: 25px;
        height: 30px;       
        cursor: pointer;
    }

    .jcarousel-next {
        right: 0px;
        background: url(../images/next-btn.gif) no-repeat left top;
    }
	.jcarousel-next:hover {
		background-position: 0 -30px;
	}
    .jcarousel-prev {
        left: 0;
        background: url(../images/prev-btn.gif) no-repeat left top;
    }
	.jcarousel-prev:hover {
		background-position: 0 -30px;
	}

    .jcarousel-next-disabled,
    .jcarousel-prev-disabled,
	.jcarousel-next-disabled:hover,
	.jcarousel-prev-disabled:hover{ /* disabled */
       /* opacity: 0.2;
		-moz-opacity: 0.2;
        filter: alpha(opacity=20);*/
		background-position: 0 -60px;
		cursor: default;
    }
/* END. user theme */

/* CSS nền hiển thị Modal */
.nenmodal .nenmodal2 {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    z-index: 1;
    display: none;
}
/* CSS bảng nội dung Modal */
.nenmodal .ndmodal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    background: #fff;
    width: 600px;
    z-index: 2;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    font-family: "Open Sans",sans-serif;
    border-radius: 20px;
    display: block;
    position: fixed;
    box-shadow: 0px 0px 10px #111;
}

@media (max-width: 700px) {
    .nenmodal .ndmodal {
        width: 90%;
    }
}
/* CSS bao bọc của nút tắt Modal */
.nenmodal .closemodal {
    text-align: center;
    margin-top: -40px;
    margin-bottom: 10px;
}
/* CSS tieu de của Modal */
.titlemodal {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}
/* CSS nút tắt modal */
.closemodal button {
    width: 40px;
    height: 40px;
    font-size: 30px;
    padding: 0px;
    border-radius: 100%;
    background: #333;
    color: #fff;
    border: none;
}

.nenmodal.active .nenmodal2 {
    display: block;
}
/* CSS hiệu ứng hiển thị Modal */
.nenmodal.active .ndmodal {
    transition: all 300ms ease-in-out;
    transform: translate(-50%,-50%) scale(1);
}

.tablinks-container {
    display: flex;
    margin-top: 20px;
}

.tablinks {
    cursor: pointer;
    padding: 10px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 10px;
    flex: 1;
    text-align: center;
    font-weight: bold;
}

.tabcontent {
    display: none;
}

    .tabcontent.active {
        display: block;
        text-align: left;
    }

.tablinks.active {
    background-color: #ccc;
}

#submitButton {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    /* CSS cho hiệu ứng khi di chuột vào */
    #submitButton:hover {
        background-color: #0056b3;
    }