/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
.countup {
    font-size: 2em; 
    color: #00B5E7; 
    font-weight: bold;
}

.step-title {
    display: flex;
    align-items: center;
    font-size: 1em;
    margin-bottom: 10px;
}

.step-number {
    color: white; /* Chữ màu trắng */
    display: inline-block;
    width: 40px;
    height: 30px; /* Chiều cao là 30px */
    text-align: center;
    line-height: 30px; /* Điều chỉnh line-height để căn giữa chữ */
    font-size: 1.2em;
    font-weight: bold;
    margin-right: 30px; /* Thêm margin phải để không đè lên chữ */
    position: relative;
    background-color: var(--step-color); /* Sử dụng biến để dễ dàng thay đổi màu */
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.step-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -7px; /* Tạo khoảng cách 3px */
    width: 5px;
    height: 30px; /* Chiều cao là 30px */
    background-color: var(--step-color); /* Cùng màu với step-number */
}

.step-number::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 21px solid var(--step-color); /* Cùng màu với step-number */
}

.step-1 {
    --step-color: #1E88E5; /* Blue */
}

.step-2 {
    --step-color: #43A047; /* Green */
}

.step-3 {
    --step-color: #FB8C00; /* Orange */
}

.step-4 {
    --step-color: #E53935; /* Red */
}

.step-5 {
    --step-color: #8E24AA; /* Purple */
}

.step-6 {
    --step-color: #3949AB; /* Indigo */
}

.step-7 {
    --step-color: #00ACC1; /* Cyan */
}

.step-8 {
    --step-color: #F4511E; /* Deep Orange */
}

.step-9 {
    --step-color: #6D4C41; /* Brown */
}

.step-10 {
    --step-color: #546E7A; /* Blue Grey */
}

mark {
  background-color: yellow;
  color: black;
}

#faqSearch.error {
  border: 2px solid red;
  color: red;
}

#faqSearch {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button#toggleAccordions {
  display: inline-block;
  padding: 1px 10px;
  margin-bottom: 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

button#toggleAccordions:hover {
  background-color: #0056b3;
}

.flatsome_recent_posts ul {
    font-size: 0.8em !important;
}


.accordion_title {
	color: #00b5e7;
	font-weight: bold;
}
@media only screen and (max-width: 53em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/
.contactLogoImg {width: 45%; float:left;}
.contact_logo {width: 55%; float:right;}

}