﻿#dnn_FullScreenPaneC{margin-bottom:40px;}
.nav-pills .nav-link {
   border-radius: 0;
 }
 .sub-item {
   padding-left: 2rem;
   font-size: 0.9rem;
 }
.nav-pills i::after {
   content: "";
   /* border-bottom: 2px solid currentColor; */
   border-left: 2px solid currentColor;
   border-bottom: 2px solid currentColor;
   width: 9px;
   height: 9px;
   display: inline-block;

   margin-left: 7px;
   margin-bottom: 1px;
 }
 .nav-pills i.fa-close::after{
   display: none;
 }
 .dropdown-toggle.collapsed i::after {

   -webkit-transform: rotate(45deg);
   transform: rotate(45deg);
 }
 .dropdown-toggle:not(.collapsed) i::after {
   -webkit-transform: rotate(315deg);
   transform: rotate(315deg);
 }
 div#v-pills-tab {
   padding: 10px 20px;
   background-color: #ffffff;
   border-radius: 8px;
}

h4.tab-heading {
   color: var(--secondary-color);
   line-height: 36px;
   font-size: 20px;
   padding-top: 8px;
   padding-bottom: 40px;
   font-weight: 700;
}

.nav-pills .nav-link , .nav-pills .nav-link.dropdown-toggle.collapsed{
   color: #242424 !important ;
   font-size: 16px;
   font-weight: 700;
   line-height: 32px;
   text-align: right;
   margin-bottom: 10px;
}
.nav-pills .sub-item,.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
   color: #696969;
   font-size: 14px;
   font-weight: 700;
   line-height: 24px;
   text-align: right;
   background-color: unset !important;
}
.collapse {
   border-right: 2px solid #6969693d;
   margin-right: 19px;
}
div#tab3-collapse {
   border-right: unset;
}
.nav-pills .nav-link.active, .nav-pills .nav-link.dropdown-toggle.active,.nav-pills .nav-link.dropdown-toggle {
   background-color: unset !important;
   color: #00478D !important ;
   font-size: 16px;
   font-weight: 700;
   line-height: 32px;
   margin-bottom: 10px;
   text-align: right;
   position: relative;
}
.media-nav_mob{
  background-color: #00478D;
  width: 100%;
  height: 52px;
  align-items: center;
  justify-content: space-between;
  display: none;
  margin-bottom: 30px;
}
.media-nav_mob h4{
font-weight: 700;
font-size: 16px;
color:#FDFDFD ;
margin-right: 20px;
}
.media-nav_mob i{
font-size: 20px;
color:#FDFDFD ;
margin-left: 20px;
}

#v-pills-tab i.fa-close{
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 22px;
    display: none;
    color: #003264;
}
@media only screen and (max-width: 575px) {
  #v-pills-tab {
    padding: 10px 20px;
    background-color: #ffffff;
    border-radius: 8px;
    position: fixed;
    z-index: 99;
    width: 100%;
    right: 0;
    bottom: 0;
    height: 80vh;

    /* Start hidden */
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  /* Show state */
  #v-pills-tab.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .media-nav_mob {
    display: flex;
  }

  #v-pills-tab i.fa-close {
    display: block;
  }
}