﻿@import url('https://fonts.googleapis.com/css?family=Arimo:400,700&display=swap');
.warpper{
  display:flex;
  flex-direction: column;
  align-items: center;
}
.tab{
	margin-left: 20px;
   cursor: pointer;
    color: #bcbcbc;
    background-color: #ffffff00;
    border: 1px #bcbcbc solid;
    font-size: 13px;
    display: inline-block;
    padding: 6px 65px 9px;
    margin-bottom: 0;
    font-size: 15px;
    text-transform:uppercase;
    font-weight: 400;
    font-family: 'CoHeadlineW23-ArabicLight';    
    border-radius: 50px;
}
.panels{
  background:#fff;
  width:100%;
  max-width:100%;
  border-radius:0px;
  overflow:hidden;
  padding:5px 0;  
}
.panel{
  display:none;
  animation: fadein .8s;
}
@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
.panel-title{
  font-size:1.5em;
  font-weight:bold
}
.radio{
  display:none;
}
#one:checked ~ .panels #one-panel,
#two:checked ~ .panels #two-panel,
#three:checked ~ .panels #three-panel,
#four:checked ~ .panels #four-panel,
#five:checked ~ .panels #five-panel,
#six:checked ~ .panels #six-panel,
#seven:checked ~ .panels #seven-panel,
#eight:checked ~ .panels #eight-panel,
#nine:checked ~ .panels #nine-panel,
#ten:checked ~ .panels #ten-panel
{
  display:block
}
#one:checked ~ .tabs #one-tab,
#two:checked ~ .tabs #two-tab,
#three:checked ~ .tabs #three-tab,
#four:checked ~ .tabs #four-tab,
#five:checked ~ .tabs #five-tab,
#six:checked ~ .tabs #six-tab,
#seven:checked ~ .tabs #seven-tab,
#eight:checked ~ .tabs #eight-tab,
#nine:checked ~ .tabs #nine-tab,
#ten:checked ~ .tabs #ten-tab
{
  color:#fff;
   background: linear-gradient(90deg, #8a80f3 21%, #aa7ce9 87%);
    border-color: #773cbe00;
}