/* ITU Language Dropdown Styles */
.ituLanguageDropdown {  
  position: relative;  
  display: inline-block;  
}  
  
.ituLanguageDropdown ul[data-dropdown-content] {  
  display: none !important;  
  position: absolute;  
  background-color: #ffffff;  
  border: 1px solid #ccc;  
  padding: 10px;  
  width: 200px;  
  z-index: 999999;  
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  
  list-style: none;
  margin: 0;
  top: 100%;
  right: 0;
}  

.ituLanguageDropdown:hover ul[data-dropdown-content] {
  display: none !important;
}

.autoTranslateDropdown:hover ul[data-dropdown-content] {
  display: none !important;
}

[data-dropdown]:hover ul[data-dropdown-content] {
  display: none !important;
}
  
.ituLanguageDropdown.active ul[data-dropdown-content] {  
  display: block !important;  
}

.ituLanguageDropdown ul li {
  margin: 0;
  padding: 5px 0;
}

.ituLanguageDropdown ul li a {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 5px 10px;
}

.ituLanguageDropdown ul li a:hover {
  background-color: #f5f5f5;
}

.ituLanguageDropdown #ituMainLanguages {
  cursor: pointer;
  font-size: 18px;
  color: #333;
  float: right;
}  
  
.ituCardNotification {
  position: fixed;
  top: 20px;
  right: 20px;
  border-radius: 4px;
  background-color: #2f2f2f;
  color: white;
  width: 320px;
  max-width: calc(100vw - 40px);
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transform: translateX(calc(100% + 30px));
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
  display: none;
  border-left: 3px solid #009CD6;
  z-index: 10000;
}

body {
  overflow-x: hidden;
}


.ituCardNotification.active {
  transform: translateX(0%);
display: block;
}

.ituCardNotification .ituCardNotificationContent {
  display: flex;
  align-items: center;
}


.ituCardNotificationContent .message {
  display: flex;
  flex-direction: column;

}
#toastMessageDisclaimer{
    color:#009CD6;
    }
    #toastMessageDisclaimer:hover{
    text-decoration: underline;
    }
.message .text {
  font-size: 16px;
  font-weight: 400;
  color: white;
  margin-left: 0px !important;
}

.text-2 {
  font-size: 16px;
  font-weight: 400;
  color: white;
  margin-left: 0px !important;
  text-decoration: underline;
}

.ituCardNotification .close::before {
  content: "×";
  color: white;
  font-weight: bold;
}

.ituCardNotification .close {
  position: absolute;
  top: 10px;
  right: 15px;
  padding: 5px;
  cursor: pointer;
  opacity: 0.7;

}

.ituCardNotification .close:hover {
  opacity: 1;
}

.ituCardNotification.active ~ button {  
  pointer-events: none;  
}  

#translation-slot {  
  list-style-type: none;  
}  

