@import url(https://fonts.googleapis.com/css?family=Roboto:400,500);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css);

body, html{
    margin: 0;
    
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6{
    margin: 0;
}


/* scrollbar */
*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-thumb {
  background-color: #ee2323;
  border-radius: 20px;
  border-left: 1px solid #ee2323;
}

*::-webkit-scrollbar-track {
  background-color: rgba(98, 0, 255, 0.05);
  width: 12px;
}

/* NavBar */
.header {
    background-color: #fff;
    box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
    position: fixed;
    width: 100%;
    z-index: 1005;
  }
  
  .header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: #fff;
    font-size: 20px;
    font-family: 'Roboto Mono', monospace;
  }
  
  .header li a {
    color: rgb(233, 96, 96);
    display: block;
    padding: 20px 20px;
    border-right: 1px solid #f4f4f4;
    text-decoration: none;
  }
  
  .header li a:hover,
  .header .menu-btn:hover {
    background-color: #f4f4f4;
  }
  
  .header .logo {
    color: red;
    display: block;
    float: left;
    font-size: 1.9em;
    padding: 10px 20px;
    text-decoration: none;
    font-family: 'Roboto Mono', monospace;
  }

  @media (min-width:950px) and (max-width:1400px) {
    .header .logo{
     font-size: 1.6em;
    }
  }
  
  @media (min-width:500px) and (max-width:949px) {
    .header .logo{
      font-size: 1.6em;
    }
  }
  
  @media (min-width:200px) and (max-width:500px) {
    .header .logo{
      font-size: 1.6em;
    }
  }
  
  /* menu */
  
  .header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
  }
  
  /* menu icon */
  
  .header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
  }
  
  .header .menu-icon .navicon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
  }
  
  .header .menu-icon .navicon:before,
  .header .menu-icon .navicon:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
  }
  
  .header .menu-icon .navicon:before {
    top: 5px;
  }
  
  .header .menu-icon .navicon:after {
    top: -5px;
  }
  
  /* menu btn */
  
  .header .menu-btn {
    display: none;
  }
  
  .header .menu-btn:checked ~ .menu {
    max-height: 480px;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
  }
  
  /* 48em = 768px */
  
  @media (min-width: 88em) {
    .header li {
      float: left;
    }
    .header li a {
      padding: 20px 30px;
    }
    .header .menu {
      clear: none;
      float: right;
      max-height: none;
    }
    .header .menu-icon {
      display: none;
    }
  }

  /* selectbox */
  .dropdown {
    float: left;
    overflow: hidden;
    padding: 10px 0px;
  }
  
  .dropdown .dropbtn {
    display: block;
    cursor: pointer;
    font-size: 20px;  
    border: none;
    outline: none;
    color: red;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    border-right: 1px solid #f4f4f4;
  }
  
  .navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
    background-color: #f4f4f4;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    float: none;
    color: rgb(199, 3, 3);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  .show {
    display: block;
  }

 /* dropdown2 */
 .dropdown2 {
  float: left;
  overflow: hidden;
  padding: 10px 0px;
}

.dropdown2 .dropbtn2 {
  display: block;
  cursor: pointer;
  font-size: 20px;  
  border: none;
  outline: none;
  color: red;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  border-right: 1px solid #f4f4f4;
}

.navbar a:hover, .dropdown2:hover .dropbtn2, .dropbtn2:focus {
  background-color: #f4f4f4;
}

.dropdown2-content2 {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown2-content2 a {
  float: none;
  color: rgb(199, 3, 3);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown2-content2 a:hover {
  background-color: #ddd;
}

.show2 {
  display: block;
}

/* dropdown3 */
.dropdown3 {
  float: left;
  overflow: hidden;
  padding: 10px 0px;
}

.dropdown3 .dropbtn3 {
  display: block;
  cursor: pointer;
  font-size: 20px;  
  border: none;
  outline: none;
  color: red;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  border-right: 1px solid #f4f4f4;
}

.navbar a:hover, .dropdown3:hover .dropbtn3, .dropbtn2:focus {
  background-color: #f4f4f4;
}

.dropdown3-content2 {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown3-content2 a {
  float: none;
  color: rgb(199, 3, 3);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown3-content2 a:hover {
  background-color: #ddd;
}

.show3 {
  display: block;
}

  /* intro section */

  .intro{
      position: absolute;
      height: 300px;
      width: 100%;
      background-color: rgba(98, 0, 255, 0.05);
      margin-top: 150px;
      padding-top: 50px;
      padding-bottom: 50px;
      display: flex;
      flex-wrap: wrap;
      flex-direction: row;
      align-content: space-around;
      justify-content: space-around;
  }

  @media (min-width:1400px) and (max-width:1700px) {
    .intro{
      height: 600px;
      margin-top: 180px;
    }
  }

  @media (min-width:950px) and (max-width:1400px) {
    .intro{
      height: 600px;
      margin-top: 180px;
    }
    .dropdown{
      overflow: hidden;
      padding: 10px 0px;
      float: none;
      border-right: none;
    }
    .dropdown .dropbtn{
      border-right: none;
    }
    .dropdown2{
      overflow: hidden;
      padding: 10px 0px;
      float: none;
      border-right: none;
    }
    .dropdown2 .dropbtn{
      border-right: none;
    }
    .dropdown3{
      overflow: hidden;
      padding: 10px 0px;
      float: none;
      border-right: none;
    }
    .dropdown3 .dropbtn{
      border-right: none;
    }
  }
  
  @media (min-width:500px) and (max-width:949px) {
    .intro{
      height: 600px;
      margin-top: 180px;
    }
    .dropdown {
      overflow: hidden;
      padding: 10px 0px;
      float: none;
      border-right: none;
    }
    .dropdown2{
      overflow: hidden;
      padding: 10px 0px;
      float: none;
      border-right: none;
    }
    .dropdown .dropbtn{
      border-right: none;
    }
    .dropdown2 .dropbtn{
      border-right: none;
    }
    .dropdown3{
      overflow: hidden;
      padding: 10px 0px;
      float: none;
      border-right: none;
    }
    .dropdown3 .dropbtn{
      border-right: none;
    }
  }
  
  @media (min-width:200px) and (max-width:500px) {
    .intro{
      height: 650px;
      margin-top: 70px;
    }
    .dropdown{
      overflow: hidden;
      padding: 10px 0px;
      float: none;
      border-right: none;
    }
    .dropdown .dropbtn{
      border-right: none;
    }
    .dropdown2{
      overflow: hidden;
      padding: 10px 0px;
      float: none;
      border-right: none;
    }
    .dropdown2 .dropbtn{
      border-right: none;
    }
    .dropdown3{
      overflow: hidden;
      padding: 10px 0px;
      float: none;
      border-right: none;
    }
    .dropdown3 .dropbtn{
      border-right: none;
    }
  }

 

  .provider{
    display: flex;
    flex-direction: column;
    align-content: space-around;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .ethernet{
      margin-top: 50px;
      font-size: 50px;
      font-weight: 500;
      color: rgb(107, 107, 107);
      text-transform: uppercase;
      font-family: 'Oswald', sans-serif;
      margin-right: 20px;
      margin-left: 15px;
      margin-bottom: 15px;
  }

  @media (min-width:950px) and (max-width:1400px) {
    .ethernet{
      font-size: 40px;
    }
  }
  
  @media (min-width:500px) and (max-width:949px) {
    .ethernet{
      font-size: 35px;
    }
  }
  
  @media (min-width:200px) and (max-width:500px) {
    .ethernet{
      font-size: 30px;
    }
  }

  .nameprov{
    font-size: 40px;
    font-weight: 700;
    background: #8A2387;
    background: -webkit-linear-gradient(to right, #F27121, #E94057, #8A2387);
    background: linear-gradient(to right, #F27121, #E94057, #8A2387); 
    -webkit-background-clip: text;
    color: transparent;
    margin-right: 45px;
    margin-left: 15px;
    
  }
  

  .words{
    font-size: 26px;
    font-weight: 200;
    color: #000;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    margin-right: 20px;
    margin-left: 19px;
  }

.words-words1{
  color: #E94057;
}
  
  /* computer with table SVG */

  .computer{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 50px;
  }

  svg {
    width: 356px;
    height: 356px;
    margin-right: 100px;
  }
  
  /* SMOKE */
  #smoke-1 {
    stroke-dasharray: 0, 10;
    animation: smoke 6s ease infinite;
  }
  
  #smoke-2 {
    stroke-dasharray: 0, 10;
    animation: smoke 6s 0.5s ease infinite;
  }
  
  @keyframes smoke {
    0% { stroke-dasharray: 0, 10; }
    50% { stroke-dasharray: 10, 0; }
    100% { stroke-dasharray: 10, 0; opacity: 0; }
  }
  
  /* WRITING */
  #line-1 {
    opacity: 0;
    animation: writing 0.5s linear forwards;
  }
  
  #line-2 {
    opacity: 0;
    animation: writing 0.5s 1s linear forwards;
  }
  
  #line-3 {
    opacity: 0;
    animation: writing 0.5s 1.5s linear forwards;
  }
  
  #line-4 {
    opacity: 0;
    animation: writing 0.5s 2s linear forwards;
  }
  
  @keyframes writing {
    0% { width: 0px; opacity: 1;}
    100% { width: 14px; opacity: 1;}
  }
  
  @media (min-width:200px) and (max-width:1530px) {
    .computer{
        display:none;
    }
 }
 

 /* Social */

 .notif {
    margin-left: -45px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: space-around;
    justify-content: space-evenly;
  }
  
  
  .frame{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 80px;
    width: 350px;
    position: relative;
     box-shadow:
     -7px -7px 20px 0px #fff9,
     -4px -4px 5px 0px #fff9,
     7px 7px 20px 0px #0002,
     4px 4px 5px 0px #0001,
     inset 0px 0px 0px 0px #fff9,
     inset 0px 0px 0px 0px #0001,
     inset 0px 0px 0px 0px #fff9,        inset 0px 0px 0px 0px #0001;
   transition:box-shadow 0.6s cubic-bezier(.79,.21,.06,.81);
     border-radius: 10px;
  }
  
  .btn{
    height: 35px;
    width: 35px;
    border-radius: 3px;
    background: #e0e5ec;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
    box-shadow:
     -7px -7px 20px 0px #fff9,
     -4px -4px 5px 0px #fff9,
     7px 7px 20px 0px #0002,
     4px 4px 5px 0px #0001,
     inset 0px 0px 0px 0px #fff9,
     inset 0px 0px 0px 0px #0001,
     inset 0px 0px 0px 0px #fff9,        inset 0px 0px 0px 0px #0001;
   transition:box-shadow 0.6s cubic-bezier(.79,.21,.06,.81);
    font-size: 16px;
    color: rgba(42, 52, 84, 1);
    text-decoration: none;
  }
  .btn:active{
    box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
                -4px -4px 6px 0 rgba(116, 125, 136, .2), 
      inset -4px -4px 6px 0 rgba(255,255,255,.5),
      inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
  }

  @media (min-width:200px) and (max-width:850px) {
    .notif{
        width: 100%;
        margin-left: 5px;
    }
 }


 @media (min-width:950px) and (max-width:1400px) {
  .frame{
    width: 300px;
  }
 
 
}

@media (min-width:500px) and (max-width:949px) {
  .frame{
    width: 300px;
  }
 
  
}

@media (min-width:200px) and (max-width:500px) {
  .frame{
    width: 300px;
  }
 
}
  
 

/* wrapper notif */

.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .typing-demo {
    width: 29ch;
    animation: typing 3s steps(29), blink .5s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid;
    font-family: monospace;
    font-size: 1em;
    color: #E94057;
    text-transform: none;
  }
  
  @keyframes typing {
    from {
      width: 0
    }
  }
      
  @keyframes blink {
    50% {
      border-color: transparent
    }
  }

  @media (min-width:200px) and (max-width:950px) {
    .wrapper{
        display:none;
    
    }
 }
 



.contact{
  position: absolute;
  margin-top: 100px;
  width: 100%;
  background-image: url('../img/support.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed; 
  background-size: 100% 100%;
  height: 400px;

}

.words9{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: space-around;
  align-items: center;
  margin-top: 69px;
  color: #ffffff;
}

.btncontact:hover{cursor: pointer}
.btncontact {
  margin-top: 10px;
  background: #ca30303b;
  position: relative;
  border: 2px solid rgb(255, 255, 255);
  padding: 15px 50px;
  overflow: hidden;
}

/*button:before (attr data-hover)*/
.btncontact:hover:before{opacity: 1; transform: translate(0,0);}
.btncontact:before{
  content: attr(data-hover);
  position: absolute;
  top: 1.1em; left: 0;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  font-size: .8em;
  opacity: 0;
  transform: translate(-100%,0);
  transition: all .3s ease-in-out;
}
  /*button div (button text before hover)*/
  .btncontact:hover div{opacity: 0; transform: translate(100%,0)}
  .btncontact div{
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    font-size: .8em;
    transition: all .3s ease-in-out;
  }


  @media (min-width:950px) and (max-width:1400px) {
    .contact{
    margin-top: 200px;
    background-color: rgba(98, 0, 255, 0.05);
    background-image: none;
    width: 100%;
    }
    .words9,.btncontact div{
      color: #E94057;
      border: none;
      font-size: 12px;
    }
   
  }
  
  @media (min-width:500px) and (max-width:949px) {
    .contact{
      margin-top: 200px;
      background-color: rgba(98, 0, 255, 0.05);
      background-image: none;
      width: 100%;
    }
    .words9,.btncontact div{
      color: #E94057;
      border: none;
      font-size: 12px;
    }
    
  }
  
  @media (min-width:200px) and (max-width:500px) {
    .contact{
    margin-top: 100px;
    background-color: rgba(98, 0, 255, 0.05);
    background-image: none;
    width: 100%;
    }
    .words9,.btncontact div{
      color: #E94057;
      border: none;
      font-size: 12px;
    }
   
  }

  /* footer */
  .fixed_footer{
    margin-top: 500px;
    width: 100%;
    height: 850px;
    background: #111;
    position: absolute; 
  }
     .fixed_footer p{
      color: #696969;
      column-count: 2;
      column-gap: 50px;
      font-size: 1em;
      font-weight: 300;
    }

    @media (min-width:950px) and (max-width:1400px) {
      .fixed_footer{
        margin-top: 600px;
      }
      .content{
  
      flex-direction: column;
   
      }
     
    }
    
    @media (min-width:500px) and (max-width:949px) {
      .fixed_footer{
        margin-top: 600px;
      }
      .content{
      
        flex-direction: column;
   
        }
    }
    
    @media (min-width:200px) and (max-width:500px) {
      .fixed_footer{
        margin-top: 800px;
      }
      .content{
      
        flex-direction: column;
       
        }
    }

    .content{
      margin-top: 36px;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-evenly;
      font-family: 'Roboto Mono', monospace;
      margin-left: 15px;
      margin-right: 15px;
      
    }

    .content h1{
      color: #dddddd;
      font-size: 22px;
    }

    .content li{
      list-style-type: none;
      color: #E94057;
      font-size: 18px;
      margin-top: -25px;
      padding: 15px;
    }

    .content a{
      text-decoration: none;
      color: #E94057;
    }

.first{
    margin: 50px;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5000px;
}

/* price */

.price{
position: absolute;
margin-top: 500px;
width: 100%;
}

.cols{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.col{
  width: calc(25% - 5rem);
  margin: 3.5rem;
  cursor: pointer;
}

.container{
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
    -webkit-perspective: 1000px;
            perspective: 1000px;
}

.front,
.back{
  background-size: cover;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.25);
  border-radius: 10px;
    background-position: center;
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    text-align: center;
    min-height: 400px;
    height: auto;
    border-radius: 10px;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.2;
}

.back{
  background: #cedce7;
  background: -webkit-linear-gradient(45deg,  #cedce7 0%,#596a72 100%);
  background: -o-linear-gradient(45deg,  #cedce7 0%,#596a72 100%);
  background: linear-gradient(45deg,  #cedce7 0%,#596a72 100%);
}

.front:after{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    opacity: .6;
    background-color: #df2525;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 10px;
}


.container{
  text-decoration: none;
  color: white;
}

.back{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.inner{
    -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
            transform: translateY(-50%) translateZ(60px) scale(0.94);
    top: 50%;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
            perspective: inherit;
    z-index: 2;
}

.container .back{
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

.container .front{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}





.front .inner p{
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  font-family: 'Roboto Condensed', sans-serif;
}

.front .inner p:after{
  content: '';
  width: 14rem;
  height: 2px;
  position: absolute;
  background: #95e7ff;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -.5rem;
}

.front .inner span{
  color: rgba(255, 255, 255, 0.979);
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
}

@media screen and (max-width: 64rem){
  .col{
    width: calc(33.333333% - 2rem);
  }
}

@media screen and (max-width: 48rem){
  .col{
    width: calc(50% - 2rem);
  }
}

@media screen and (max-width: 32rem){
  .col{
    width: 100%;
    margin: 0 0 2rem 0;
  }
}


@media (min-width:950px) and (max-width:1650px) {
  .price{
    margin-top: 800px;
  }
}

@media (min-width:500px) and (max-width:949px) {
  .price{
    margin-top: 800px;
  }
}

@media (min-width:200px) and (max-width:500px) {
  .price{
    margin-top: 850px;
  }
}

/*  button   */

@keyframes gradient {
  0% {
    background: radial-gradient(circle at center, rgba( 255, 125 , 125, 0 ) 0%, #fff 0%, #fff 100%);
  }
  25% {
    background: radial-gradient(circle at center, rgba( 255, 125, 125, 0.3 ) 24%, #fff 25%, #fff 100%);
  }
  50% {
    background: radial-gradient(circle at center, rgba( 255, 125, 125, 0.5 ) 49%, #fff 50%, #fff 100%);
  }
  75% {
    background: radial-gradient(circle at center, rgba( 255, 125, 125, 0.8 ) 74%, #fff 75%, #fff 100%);
  }
  100% {
    color: #fff;
    background: radial-gradient(circle at center, #f88 99%, #fff 100%, #fff 100%);
  }
}


/* Tarrif */

 /* Modal */
 .modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10; /* Sit on top */
  padding-top: 250px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 30%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  border-radius: 10px;
  font-family: 'Oswald', sans-serif;
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
  margin-top: -5px;
  color: rgb(240, 73, 73);
  float: right;
  font-size: 30px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 10px 10px;
  background-color: #eeeeee;
  color: rgb(240, 73, 73);
  border-radius: 10px;
}

.modal-body {
  padding: 1px 16px;
  border-radius: 10px;
  font-size: 20px;
}

.modal-body input{
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
  font-family: montserrat;
  color: #2C3E50;
  font-size: 13px;
}

.modal-footer {
  padding: 20px 16px;

  color: white;
  
}


.midbtn{
  margin-left: auto;
  margin-right: auto;
  width:255px;
}


@media (min-width:950px) and (max-width:1400px) {
  .modal-content{
    width: 50%;
  }

  .modal{padding-top: 100px;}
 
}

@media (min-width:500px) and (max-width:949px) {
  .modal-content{
    width: 50%;
  }
  .modal{padding-top: 200px;}
  
}

@media (min-width:200px) and (max-width:500px) {
  .modal-content{
    width: 90%;
  }
  .modal{padding-top: 200px;}
 
}

.btn-price{
  width: 260px;
  margin-top: 30px;
  background-color: rgb(233, 96, 96); /* Green */
  border: none;
  color: rgb(233, 96, 96);
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 8px;
  background-color: white; 
  border: 2px solid rgb(233, 96, 96);
}

.btn-price:hover {
  background-color: rgb(233, 96, 96);
  color: white;
}

/* korjik */
.korjik {
  position: absolute;
  width: 100%;
  background-color: #111;
  color: rgb(170, 170, 170);
  text-align: center;
  margin-top: 1665px;
}

@media (min-width:950px) and (max-width:1400px) {
  .korjik{
    margin-top: 1765px;
  }
}

@media (min-width:500px) and (max-width:949px) {
  .korjik{
    margin-top: 2135px;
  }
}

@media (min-width:200px) and (max-width:500px) {
  .korjik{
    margin-top: 3280px;
  }
}


.smallf{
  font-size: 20px;
}


/* table */

.container-table {
  max-width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

ul.responsive-table {
  width: 100%;
  margin: 25px auto;
  position: absolute;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h2 {
  font-size: 26px;
  margin: 20px 0;
  text-align: center;
}

h2 small {
  font-size: 0.5em;
}

.page-bonuse{
  position: relative;
  top: 20px;
}

.responsive-table li {
  border-radius: 3px;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.responsive-table .table-header {
  background-color: #4169e1;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  color: #fff;
  height: 62px;
}

.inpser {
  height: 62px;
}

.edc{
  left: 0;
  width: 100%;
  background-color: #1d2329;
}

.responsive-table .table-row {
  background-color: #fff;
  display: flex;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
  align-items: center;
}

.frs{
  flex-basis: 45% !important;
}

.responsive-table .col-1 {
  display: flex;
  flex-basis: 33%;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.style-word-admin {
  color: #607ccf;
}
.responsive-table .col-2 {
  flex-basis: 33%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.email-acc{
    flex-basis: 80%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.responsive-table .col-3 {
  flex-basis: 33%;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.col-forecast{
  flex-direction: column;

}

.country-acc{
  flex-basis: 100%;
  display: flex;
  justify-content: center;
}

.jcs{
  flex-basis: 45% !important;
}

.jack{
  font-size: 25px;
}

.responsive-table .col-4 {
  flex-basis: 45%;
  display: flex;
  width: 100%;
  justify-content: center;
}

.col-exchanger4{
  flex-basis: 25% !important;
}

.time-acc{
  flex-basis: 0;
  display: flex;
  width: 100%;
  justify-content: center;
}

.yellow-money{
  background-color: #e2e25e;
}
.green-money{
  background-color: #89cd46;
}
.gray-money{
  background-color: gray;
}
.blue-money{
  background-color: #0084ff;
}
.red-money{
  background-color: #d61818;
}
.spin-money{
  background-color: #d68a18;
}

.green-money,.gray-money,.blue-money,.red-money,.spin-money,.yellow-money{
  margin: 5px;
  border-radius: 5px;
  padding: 10px;
  color: #fff;
}

.responsive-table .col-5 {
  flex-basis: 25%;
}

.col-exchanger5{
  flex-basis: 30% !important;
}

.balance-acc{
  flex-basis: 45% !important;
}

.bf{
  flex-basis: 45% !important;
}

.responsive-table .col-5 {
  display: flex;
  width: 100%;
  justify-content: center;
}

.col.col-5.vpp {
  flex-basis: 45%;
}

.col.col-5.bla {
  flex-basis: 55%;
}

.plus,.minus{
  font-size: 25px;
}

.responsive-table .col-6 {
  flex-basis: 35%;
}

.responsive-table .col-6 {
  display: flex;
  width: 100%;
  justify-content: center;
}

.col-exchanger6{
  flex-basis: 15% !important;
}

.bx-edit {
  font-size: 22px;
  background-color: royalblue;
  color: #fff;
  padding: 5px;
}

.fa-laptop {
  font-size: 15px;
  background-color: royalblue;
  color: #fff;
  padding: 10px;
  margin-left: 1px;
  border-radius: 4px;
}

.laptop-chat{
  font-size: 15px;
  background-color: royalblue;
  color: #fff;
  padding: 10px;
  margin-left: 1px;
  border-radius: 4px;
}

.responsive-table .col-7 {
  flex-basis: 25%;
}

.responsive-table .col-7 {
  display: flex;
  width: 100%;
  justify-content: center;
}

.points{
  background-color: gray;
  border-radius: 5px;
  padding: 10px;
  color: #fff;
}

.responsive-table .col-8 {
  flex-basis: 25%;
  display: flex;
  width: 100%;
  justify-content: center;
}

.bxs-plus-circle{
font-size: 20px;
}

.status{
  border-radius: 5px;
  padding: 10px;
  color: #fff;
  background-color: #0084ff;
}

.responsive-table .col-9 {
  flex-basis: 30%;
  display: flex;
  justify-content: center;
}

.spin {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.responsive-table .col-10 {
  flex-basis: 40%;
  display: flex;
  justify-content: center;
}

.garant{
  display: flex;
  width: 100%;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.responsive-table .col-11 {
  flex-basis: 30%;
  display: flex;
  justify-content: center;
}
.responsive-table .col-12 {
  flex-basis: 5%;

}

.dt12{
  flex-basis: 35%;
  display: flex;
  justify-content: center;
}

.responsive-table .col-13 {
  flex-basis: 5%;
}
.responsive-table .col-14 {
  flex-basis: 5%;
}

.inner-input-table{
  padding: 4px;
}

@media all and (max-width: 767px) {
  .responsive-table .table-header {
    display: none;
 }
  .responsive-table li {
    display: block;
 }
  .responsive-table .col {
    flex-basis: 100%;
 }
  .responsive-table .col {
    display: flex;
    padding: 10px 0;
 }
  .responsive-table .col:before {
    color: #6c7a89;
    padding-right: 10px;
    content: attr(data-label);
    flex-basis: 50%;
    text-align: right;
 }
}