.powered-by{
	display: none
}
.powered-by-zendesk{
  	display: none
}
.user-nav{
    display: none;
}

.request_custom_fields_360004604134,
.request_custom_fields_360004604154,
.request_custom_fields_360020151120,
.request_custom_fields_360008721433,
.request_custom_fields_360020151100
{
    display: none;
}

/*iphone X portrait*/
@media only screen 
    and (device-width : 375px) 
    and (device-height : 812px) 
    and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {    
  
    .logo {
        width: 200%;
    }
}

/* Styles for show cookies banner */
#cookie_notification{
  display: none;
  justify-content: space-between;
  align-items: flex-end;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}

#cookie_notification p{
  margin: 0;
  font-size: 16px;
  text-align: left;
  color: #2F97EB;
}

#cookie_notification .cookie_accept, .cookie_reject, .cookie_privacy_policy{
	line-height: 1.28;
  font-family: Helvetica, Arial, sans-serif;
  padding: 8px 10px 7px;
  font-size: 15px;
  background-color: #1877f2;
  border-color: #1877f2;
  color: #fff;
  cursor: pointer;
	border-radius: 3px;
	white-space: nowrap;
	text-align: center;
}

#cookie_notification a{
  text-decoration: none;
  color: #fff;
}

@media (min-width: 576px){
 #cookie_notification.show{
    display: flex !important;
  }
  .cookie_accept, .cookie_reject, .cookie_privacy_policy{
    margin: 0 0 0 25px;
  }
}

@media (max-width: 575px){
  #cookie_notification.show{
    display: block !important;
    text-align: left !important;
  }
  .cookie_accept, .cookie_reject, .cookie_privacy_policy{
    margin: 10px 0 0 0;
  }
}


/* Floating Consent Preferences Button */
.floating-consent-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    background: #4CAF50;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.floating-consent-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    background: #45a049;
}

.floating-consent-btn a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    white-space: nowrap;
}

.floating-consent-btn a:hover {
    color: white;
    text-decoration: none;
}

.floating-consent-btn svg {
    flex-shrink: 0;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .floating-consent-btn {
        bottom: 15px;
        left: 15px;
    }
    
    .floating-consent-btn a {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .floating-consent-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Скрыть текст на очень маленьких экранах, оставить только иконку */
@media (max-width: 480px) {
    .floating-consent-btn a span {
        display: none;
    }
    
    .floating-consent-btn a {
        padding: 12px;
        border-radius: 50%;
    }
    
    .floating-consent-btn {
        border-radius: 50%;
    }
}