/* tabslider.css */

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');

/* Reverted to VEF3-138 and updated*/

.container-fluid
{
    display: flex;
    background: #0040ff;
}

.box
{
display: flex; 
padding:15px;
margin: 0;           /* actual margin-top: 0; */
border-right: 1px solid white;
webkit-transition: 0.8s;
-o-transition: 0.8s;
transition: 0.8s;
position: relative; 
overflow: hidden;
list-style: none;
height: 550px;


}

.detail
{
    width: 90%;
    height: 100%;
    position: absolute;
    right: 0;
    top:0;
    background: white;
    color:black;
    opacity: 0;
    padding:30px;
    box-sizing:border-box;
    webkit-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

.box.active
{
    width: 70% !important;
    background: #0000F1;

}

.box.active .detail
{
    opacity: 1;
    -webkit-transition-delay: 0.6s;
    -moz-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
    transform: none;
}

.box span {
    writing-mode: vertical-rl;
    font-size: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    width: 40px;
    transform: rotate(180deg);
    font-weight: 400;
    cursor: pointer;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
  
}

.box.active span 
{
  width: 10%; /* Chat GPT suggested */
	left:0;
	right:0;
	margin:0;
  font-weight:600
}

p 
{
	line-height: 23px;
}


  