.modal-download {
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background-color:rgba(24,24,24,.8);
z-index:999;
overflow-y:auto;
display: -webkit-flex;
display: -ms-flex;
display: flex;
-ms-align-items: center;
align-items: center;
justify-content: center;
display: none;

}
.modal-download-backdrop {
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
cursor:pointer;
}
.modal-download.active {
display: flex;
}
.modal-download-container {
position: relative;
z-index: 100;
width: 600px;
background: #fff;
max-width: 100%;
box-shadow: 0 10px 25px rgba(0, 0, 0, .5);

}
.modal-download-title {
padding-top: 2.2em;
color: #6ac045;
font-size: 18px;
text-align: center;
font-weight: 700;
}
.modal-download-content {
  padding: 2em;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
  }

  .modal-download-content p {
    margin-bottom: 15px;
  }

.modal-download-torrent {
color:#cdcdcd;
width:30%;
border-right:1px solid #ccc;
padding: 10px;
text-align: center;
}
@media(max-width:575px) {
  .modal-download-torrent {
    width: 49%;
  }
}



.modal-download-torrent:last-child {
border:0
}


.modal-download-quality {
width:131px;
height:81px;
margin:0 auto;
margin-bottom:25px
}
.modal-download-quality-size {
  font-size: 16px;
  color: #333;
  font-weight: 700;
  margin-top: 15px;
}

.modal-download-button {
  padding: 10px 16px;
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  -ms-align-items: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  background-color: #60AE3E;
  color: #fff;
  border-radius: 4px;
  text-decoration: none !important;
}
.modal-download-button svg {
  margin-right: 10px;
}
.modal-download-invert .modal-download-container {
  background-color: #262626;
   background: linear-gradient(180deg, rgba(38,38,38,1) 0%,rgba(24,24,24,1) 100%);
  color: #eee;
}
.modal-download-invert .modal-download-quality-size {
  color: #fff;
}
.modal-download-invert .modal-download-title {
  color: #0190E0;
}
.modal-download-invert .modal-download-button {
  background-color: #0190E0;
}
  .modal-download-invert .modal-download-button path {
    fill: #004870 !important;
  }

  .modal-download-invert .modal-download-torrent {
    border-color: #555;
  }


  .modal-download-close {
position: absolute;
top: 0;
right: 0;
padding: 0;
border: none;
background: none;
width: 40px;
height: 40px;
background-color: rgba(200, 200, 200, .1);
z-index: 100;
cursor: pointer;
}

.modal-download-close:before,
.modal-download-close:after {
content: '';
position: absolute;
height: 2px;
width: 20px;
top: 50%;
left: 50%;
margin-left: -10px;
margin-top: -1px;
background: #ccc;
}

.modal-download-close:before {
transform: rotate(45deg);
}

.modal-download-close:after {
transform: rotate(-45deg)
}
