.hover:hover {
    background-color: rgba(211,211,211,0.4);
    cursor: pointer;
}

.question {
    display: flex;
    justify-content: space-between;
}

.selected {
    background-color: rgba(211, 211, 211, 0.4);
    font-weight: bold;
    color: black;
}

.subCategories {
    display: none;
    border-left: 1px solid lightgrey;
    margin-left: 35px;
}
.subCategories.show{
    display: block;
}

#navCategories > li > div:hover, #navCategories > ul.subCategories > li > div:hover {
    background-color: rgba(211, 211, 211, 0.6);
}

.search-result {
    position: absolute;
    width: 100%;
    z-index: 10;
}

.supportIcons {
    margin-right: 5px;
    /*background-color: #337ab7;*/
    color: white;
    padding: 4px 6px;
    border-radius: 4px;

}
#supportPreview{
    display: flex;
    flex-wrap: wrap;
}
#supportPreview div ul li{
    margin: 5px 0px;
    list-style: none;
}
.gridIcons>div>div>i{
    margin: 5px;
    /*background-color: #337ab7;*/
    color: black;
    padding: 4px 6px;
    border-radius: 4px;
    cursor: pointer;
    min-width:25px;
    text-align: center;
}
.gridIcons{
    float: inherit;
}
#ticketsStatistic tr th {
    text-align: left;
}
.categories {
    list-style: none;
    padding-left: 0px;
}
.copy-wrapper {
    position: relative;
}
.takeUrl{
    padding: 6px;
    border-radius:  5px;
}
.takeUrl:hover{
    background-color: #2a6496;
    color: white!important;
}
.takeUrl:after {
    position: absolute;
    top: -40px;
    left: 40%;
    height: 0;
    background-color:black;
    padding: 5px;
    color: white;
    margin: 0;
    border-radius: 5px;
    transition: height 400ms ease-out;
    pointer-events: none;
}

.takeUrl.shown:after {
    height: 100%;
    content: 'Скопировано!';
}
.questions-menu-item {
    text-decoration: none !important;
    margin-bottom: 5px !important;
}
.questions-menu-item a:hover{
    color: var(--orange-color) !important;
}
.questions-menu-item.nav-item img{
    width: 36px;
    flex-shrink: 0;
}
.questions-menu-item.nav-item.subCategory img{
    width: 28px;
}
.questions-menu-item.nav-item a{
    padding: 0 10px;
    margin: 0 !important;
}
.category-active a {
    color: var(--orange-color) !important;
}
.questions-menu-item i{
    margin: 5px !important;
    width: 24px !important;
    height: auto !important;
    min-width: 24px !important;
}
.subCategory{
    margin: 5px;
}
.accordion{
    margin: 0px !important;
}
.section-title{
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
    margin-right: 3px;
    margin-left: 5px;
}

.showMeQuestions {
    color: var(--orange-color) !important;
    text-decoration: underline !important;
    cursor: pointer;
}

@media (max-width: 1066px) {
    .content{
        background-color: white;
    }
    #tableHelpFields{
        order: 2;
    }
    #tableHelpCategories{
        order: 1;
        margin-bottom: 30px;
    }
    #navCategories{
        gap: 5px;
    }

    .ui-helper-clearfix::before, .ui-helper-clearfix::after{
        content: none;
    }

    .questions-menu-item.nav-item.nav-item{
        width: 100%;
        float: none;
        border: 1px solid rgba(0,0,0,.1);
        padding: 3px;
        margin: 0 !important;
        border-radius: 3px;
    }
    .questions-menu-item.nav-item img{
        width: 32px;
        border-radius: 4px;
    }
    .subCategory.questions-menu-item.nav-item img{
        width: 24px;
    }
    .questions-menu-item.nav-item.category-active {
        background-color: var(--orange-color);
    }
    .category-active a, .questions-menu-item a:hover{
        color: white !important;
    }

    .subCategories{
        margin: 0 25px;
        width: 100%;
        border: none;
        gap: 5px;
    }
    .subCategories.show{
        display: flex;
    }
}

.feedback-form {
  background-color: #f0f5ff;
  padding: 24px 32px;
  border-radius: 8px;
  margin-top: 46px;
}

.feedback-form > p {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 24px;
}
.feedback-container {
  display: flex;
  flex-direction: column;
}
.form-personal-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.feedback-form .form-row {
  display: flex;
  gap: 16px;
  margin: 0;
}
.feedback-form .form-row textarea {
  flex: 1;
}
.feedback-form :where(input, textarea) {
  padding: 14px 12px;
  border: 1px solid #e1e6ee;
  background-color: white;
  border-radius: 8px;
  color: #333333;
}
.feedback-form textarea {
  height: 112px;
}
.feedback-form :where(input, textarea):where(:hover, :focus) {
  border-color: #254d71;
  outline: none;
}

.feedback-form input[disabled] {
  background-color: #f1f1f1;
  color: #979797;
  border: none;
}
.feedback-form .form-controls {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.feedback-form .form-controls .primary-btn {
  width: 121px;
}
.feedback-form .feeback-captcha iframe {
  display: block;
}
.feedback-form .alert {
  margin-top: 16px;
  margin-bottom: 0;
}

@media (max-width: 1269px) {
  .feedback-form :where(.form-row, .form-controls) {
    flex-direction: column;
  }
  .feedback-form {
    padding: 24px 16px;
    border-radius: 8px;
    margin-top: 36px;
  }
  .feedback-form .form-controls .primary-btn {
    width: 100%;
  }
}
