.psc_img li {
    display: none;
    transition: width .5s ease-in-out 0s;
}

.psc_img img {
    border-radius: 5px;
    max-width: 100%;
    transition: width .5s ease-in-out 0s;
}

.psc_img li.active {
    display: block;
    animation-fill-mode: both
}

@keyframes SHW {
    from {
        opacity:0
    }
    to {
        opacity:1
    }
}

.ps_links .active {
    animation: SHW .5s;
    animation-fill-mode: both
}

.psc_links li {
    list-style: none;
    transition: width .5s ease-in-out 0s;
    position: relative;
}

.psc_links ul {
    display: flex;
}

.psc_links ul>div {
    flex: 1;
} 

.psc_links li a {
    color: #000;
    text-decoration: none !important;
    font-size: 16px;
}

.psc_wrapper {
    position: relative;
}

.psc_title {
    width: 40%;
    background: #fff;
    position: absolute;
    top: 0;
    z-index: 9;
    border-top-right-radius: 5px;
    padding: 0 11px 5px;
    font-weight: bold;
    font-size: 18px;
}

.psc_wrapper ul {
    padding: 0;
    margin: 0;
}

.psc_links li {
    transition: .5s;
    padding-right: 20px;
    line-height: 20px;
    margin-bottom: 13px;
    padding-left: 15px;
}

.psc_links li.active a {
    font-weight: bold;
    transition: .5s;
}

.psc_links .arrow {
    width: 12px;
    height: 15px;
    display: inline-block;
    background-image: url(../images/up2.png);
    background-repeat: no-repeat;
    position: relative;
    top: 2px;
    margin-left: 9px;
    visibility: hidden;
    position: absolute;
    right: 0;
    top: 5px;
}

.psc_links li.active .arrow {
    visibility: visible;
}

.psc_links li .arrow {
    animation: rotate-back .2s ease 1;
    transform: rotate(0);
}

.psc_links li:hover .arrow {
    animation: rotate .2s ease 1;
    transform: rotate(-90deg);
}

@keyframes rotate-back {
  0% {
    transform: rotate(-90deg);
  }
  100% {
    transform: rotate(0);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-90deg);
  }
}

.psc_more {
    color: cadetblue !important;
    padding-right: 18px !important;
    text-decoration: none !important;
    font-size: 16px !important;
    transition: .3s;
}

.psc_more:hover {
    color: #000 !important;
    transition: .3s;
}

.psc_img ul {
    margin-bottom: 20px;
}

