/****************************************************************
 * Template Name: AWS S3 Multipart Uploader
 * Theme URL: https://codecanyon.net/user/berkinedesign/portfolio
 * Author: BerkineDesign
 * Author URL: https://codecanyon.net/user/berkinedesign
 * Version: 1.0
 * File name: styles.css
 * Date Created: 20.03.2020
 * Website: www.berkinedesign.com/s3-multipart
 ****************************************************************/


/* -------------------------------------------- */
/*             TABLE OF CONTENTS
/* -------------------------------------------- */
/*   00 - Preload Styles			            */
/*   01 - Global Styles				            */
/*   02 - File Upload Layout		            */
/*   03 - Uploader Results Layout		        */
/*   04 - Links Layout				            */
/*   05 - Action Button 			            */
/*   06 - Copyright  				            */
/*   07 - Responsive Layout 			        */



/* ==========================================================================           
 *
 *    00 - PRELOAD STYLES
 *
 * ========================================================================== */

.no-js #loader { display: none;  }

.js #loader { display: block; position: absolute; left: 100px; top: 0; }

.se-pre-con {
			position: fixed;
			left: 0px;
			top: 0px;
			width: 100%;
			height: 100%;
			z-index: 9999;
			background: url(../img/preload.gif) center no-repeat #fff;
}



/* ==========================================================================           
 *
 *    01 - GLOBAL STYLES
 *
 * ========================================================================== */

body {
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #0E2E40;
	background: #ECF4F7;
}

h3 {
	color: #0E2E40;
	text-transform: uppercase;
	margin-bottom: 4rem;
	font-weight: 800;
	font-size: 20px;
}

h6 {
	font-size: 16px;
	color: #0E2E40;
	font-weight: 800;
	text-transform: uppercase;
}

section {
	padding: 64px;
	position: relative;
}

section .form-title h3 {
	text-shadow: 0 1px 2px rgba(57,73,76,.2);
}

section .form-title span {
	color: #0066b8;
}

#instructions {
	margin-bottom: 3rem;
	background-color: #F1FAFF;
	border: 1px solid rgba(61, 154, 255, 0.6);
	padding: 2rem;
	text-align: left;
}

#instructions h6 {
	margin-bottom: 1rem;
}

#instructions i {
	margin-right: 0.5rem;
	font-size: 18px;
	color: #0066B8;
}

#instructions ul {
	margin-bottom: 0;
}

#instructions ul li {
	margin-bottom: 0.2rem;
}

#instructions span {
	color: #0066B8;
}

.form-wrapper {
	background: #FFF;
	border-top: 7px solid #0E2E40;
	box-shadow: 0 1px 6px rgba(57,73,76,.35);
	padding: 3rem 2rem 1rem;
	width: 100%;
}



/*======================================================
*
*    02 - File Upload Layout
*
*=======================================================*/

#file-uploader {
	padding: 1.5rem 1.5rem 2rem;
	border: 1px solid rgba(57,73,76,.2);
	overflow: hidden;
	margin-bottom: 2rem;
}

.select-file {
	margin-bottom: 1.4rem;
	font-size: 12px;
	font-weight: 700;
	overflow: hidden;
}

.select-file i {
	margin-right: 0.5rem;
}

/*------------------------------------------*/
/*    File Upload Button
/*------------------------------------------*/

.select-file .input-file {
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
	width: 1px;
	height: 1px;
}

.select-file .input-file + label {
	padding: 0.9rem 2.7rem;
	background-color: #FFC300;
	color: #0E2E40;
	cursor: pointer;
	display: inline-block;
	overflow: hidden;
	min-width: 200px;
	white-space: nowrap;
	margin-bottom: 0;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 1px -1px rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.14);
}

.select-file .input-file + label:hover {
	background: #0e2e40;
	color: #FFF;
	transition: all 0.2s ease;
}

/*------------------------------------------*/
/*    File Metadata Messages
/*------------------------------------------*/

#file-metadata {
	font-size: 11px;
	padding: 0.5rem 1rem;
	display: none;
	margin-bottom: 1.5rem;
}

#file-metadata span {
	font-weight: 700;
}

.metadata-enabled {
	color: #383d41;
    background-color: #F1FAFF;
    border: 1px solid #85C0FF;
}

/*------------------------------------------*/
/*    Upload Status Messages
/*------------------------------------------*/
 
 #status-message {
    padding: 15px;
    text-align: center;
    display: none;
    margin-bottom: 1.5rem;
}

.success-message {
  color:green;
  background: #e3ffd5;
}

.error-message {
  color:red;
  background: #ffd5d5;
}

/*------------------------------------------*/
/*    Submit Button
/*------------------------------------------*/

.form-submit-button button {
	background-color: #0066B8;
	color: #FFF;
	text-transform: uppercase;
	border-radius: 0px;
	font-size: 12px;
	font-weight: 600;
	min-width: 200px;
	padding: .8rem 3.4rem;
	margin-right: 1rem;
	transition: all 0.3s ease;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 1px -1px rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.14);
}

.form-submit-button button:hover {
	background-color: #005BA4;
	color: #FFF;
}

.form-submit-button #cancel {
	background: red;
	display: none;
}



/*======================================================
*
*    03 - Uploader Results Layout
*
*=======================================================*/

#upload-status-box {
	padding: 1rem 1.5rem 2rem;
	border: 1px solid rgba(57,73,76,.2);
	overflow: hidden;
	margin-bottom: 2rem;
	text-transform: uppercase;
	font-weight: 700;
}

#upload-status-box #box-title {
	color: #0066B8;
}

#upload-status {
	padding: 2rem;
	border: 1px solid rgba(57,73,76,.2);
}

#upload-status #file-info p {
	margin-bottom: 0;
	font-size: 11px;
}

#upload-status span {
	text-transform: none;
	color: #6c757d;
}

#upload-status #result p {
	margin-bottom: 0;
	font-size: 11px;
}

#upload-status #result {
	margin-bottom: 2rem;
}

#upload-status .table {
	color: #0e2e40;
	font-size: 10px;
}

#upload-status .table thead th {
	color: #0066b8;
}

/*------------------------------------------*/
/*    Progress Bar
/*------------------------------------------*/

.progress-bar {
	margin-bottom: 1.5rem;
	height: 1.5rem;
	-webkit-box-shadow: 0 1px 4px rgba(57,73,76,.35);
	box-shadow: 0 1px 4px rgba(57,73,76,.35);
	border-radius: 0px;
}

.progress {
	border-radius: 0rem;
	position:relative;
	overflow: hidden;
	-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);	
	margin-bottom: 0.5rem;
	margin-top: 0.5rem;
}

.progress-number {
	position:absolute;
	left:50%;
	z-index:5;
	color: #0e2e40;
}



/* ==========================================================================           
 *
 *    04 - Links Layout
 *
 * ========================================================================== */

#download-link {
	padding-left: 2rem;
}

.private-link {
	padding: 1.5rem;
	border: 1px solid rgba(57,73,76,.2);
}

.private-link p {	
	margin-bottom: 0;
	margin-top: 0.5rem;
	color: rgba(57,73,76, 1);
	font-size: 10px;
}

.private-link .form-control {
	font-size: 11px;
}

/* -------------------------------------------- */
/* 		Radio Button Checkboxes
/* -------------------------------------------- */

.radio-control {
	margin-bottom: 1rem;
}

.radio-control:hover > .label-control {
  	color: #0066B8;
  	cursor: pointer;
}

.label-control::before {
  	font-size: 14px;
  	cursor: pointer;
  	color: #0066B8;
}

.input-control {
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
     display: inline-block;
     position: relative;
     background-color: #E9ECEF;
     color: #0066B8;
     top: 5px;
     height: 20px;
     width: 20px;
     border: 0;
     cursor: pointer;     
     outline: none;
     transition: all 0.2s;
}

.input-control:checked::before {
     position: absolute;
     font: 12px/1 'Open Sans', sans-serif;
     left: 7px;
     top: 3px;
     content: '\02143';
     transform: rotate(40deg);
}

.input-control:hover {
     background-color: #f7f7f7;
     webkit-box-shadow: 0px 0px 3px 1px rgba(0,102,184,.4);
	-moz-box-shadow: 0px 0px 3px 1px rgba(0,102,184,.4);
	box-shadow: 0px 0px 3px 1px rgba(0,102,184,.4);
	transition: all 0.2s;
	margin-right: 1.3rem;
}

.input-control:checked {
     background-color: #0066B8;
     color: #FFF;
     transition: all 0.2s;
     -webkit-box-shadow: 0px 0px 3px 1px rgba(0,102,184,.4);
	-moz-box-shadow: 0px 0px 3px 1px rgba(0,102,184,.4);
	box-shadow: 0px 0px 3px 1px rgba(0,102,184,.4);
}

.input-control:checked + .label-control {
	color: #0066B8;
}

.label-control {
	text-transform: uppercase;
	margin-left: 5px;
	font-weight: 700;
}

.label-control:hover {
	color: #0066B8;
}

/* -------------------------------------------- */
/* 		Link URLs
/* -------------------------------------------- */

.private-link .input-group {
	margin-bottom: 2rem;
}

.form-control {
	background-color: #FFF;
	height: auto;
	font-size: 14px;
	border-radius: 0;
	color: #007EB9;
}

.form-control[readonly] {
	background-color: #FFF;
	font-size: 11px;
}

/* -------------------------------------------- */
/* 		Chunk Size & Link Time Sliders
/* -------------------------------------------- */

#chunk-size {
	margin-top: 1.5rem;
	padding: 1rem 1rem 1.5rem;
	border: 1px solid rgba(57,73,76,.2);;
}

#chunk-size #size-slider {
	margin-top: 2rem;
}

#chunk-size #size-slider span {
	font-size: 10px;
}

#chunk-size .custom-control {
	padding-left: 0px;
}

#chunk-size .custom-control-label {
	margin-left: 1.5rem;
	margin-top: 0.5rem;
	font-size: 11px;
	text-transform: uppercase;
	padding-top: 3px;
}

#chunk-size p {
	text-transform: uppercase;
	font-weight: 700;
	color: #0066B8;
	margin-bottom: 2rem;
}

#link-time {
	margin-top: 2.5rem;	
}

#link-time #splitter span {
	font-size: 10px;
}

#link-time .custom-control {
	padding-left: 0;
}

#link-time .custom-control-label {
	margin-left: 1.5rem;
	margin-top: 0.5rem;
}

#link-time .custom-checkbox .custom-control-label::before,
#chunk-size .custom-checkbox .custom-control-label::before {
	border-radius: 0;
}

#link-time .custom-checkbox .custom-control-input:checked~.custom-control-label::after,
#chunk-size .custom-checkbox .custom-control-input:checked~.custom-control-label::after {
	background-color: #0066B8;
}

#link-time .custom-control-label::before,
#chunk-size .custom-control-label::before {
	top: .2rem;
}

#link-time .custom-control-label {
	font-size: 11px;
	text-transform: uppercase;
	padding-top: 3px;
}

#link-time .slider,
#chunk-size .slider {
	margin-right: 0.5rem;
	margin-left: 0.5rem;
}

#link-time .slider-track,
#chunk-size .slider-track { 
	border-radius: 0px;
}

#link-time .slider-handle.round,
#chunk-size .slider-handle.round { 
	border-radius: 0px;
}

#link-time  .tooltip,
#chunk-size  .tooltip {
	font-size: 11px;
	border-bottom: none!important;
}

#link-time  .slider .tooltip.top .tooltip-arrow,
#chunk-size  .slider .tooltip.top .tooltip-arrow {
	bottom: -5px;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

#link-time  .slider .tooltip-arrow,
#chunk-size  .slider .tooltip-arrow {
	position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

#link-time  .tooltip-arrow,
#chunk-size  .tooltip-arrow {
	opacity: 1;
}

#link-time  .slider .tooltip.tooltip-main.top,
#chunk-size  .slider .tooltip.tooltip-main.top {
	opacity: 1;
	background: none;
	margin-top: -30px;
	position: absolute;
}

#link-time .slider .tooltip-inner,
#chunk-size .slider .tooltip-inner {
	background-color: #0E2E40;
	padding: 0.1rem 0.5rem;
	font-weight: 600;
	border-radius: 0px;
}

#link-time .slider-primary .slider-selection,
#chunk-size .slider-primary .slider-selection {
	background-color: #428bca !important;
}

#link-time .slider-strips .slider-selection,
#chunk-size .slider-strips .slider-selection {
	background-image: repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(255,252,252,0.08) 5px, rgba(252,252,252,0.08) 10px) !important;
	background-image: -ms-repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(255,252,252,0.08) 5px, rgba(252,252,252,0.08) 10px) !important;
	background-image: -o-repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(255,252,252,0.08) 5px, rgba(252,252,252,0.08) 10px) !important;
	background-image: -webkit-repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(255,252,252,0.08) 5px, rgba(252,252,252,0.08) 10px) !important; 
}

/* -------------------------------------------- */
/* 		Copy & Download Buttons
/* -------------------------------------------- */

.btn {
	border-radius: 0;
}

.btn-outline-secondary {
	border: 1px solid rgba(57,73,76,.2);
	color: #0E2E40;
}

.btn-outline-secondary:hover {
	background-color: #0E2E40;
	border: 1px solid #0E2E40;
}

.is-blocked {
	cursor: not-allowed;
}



/* ==========================================================================           
 *
 *    05 - Action Button (Purchase Button)
 *
 * ========================================================================== */

#purchase-button {
	margin-top: 1.5rem;
}

#purchase-button a {
	background: red;
	padding: 15px 60px;
	text-transform: uppercase;
	color: #FFF;
	font-weight: 700;
	outline: none;
  	text-decoration: none;
  	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 1px -1px rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.14);
}

#purchase-button a:hover {
	background: #0E2E40;
}

/* -------------------------------------------- */
/* 		AWS Logo
/* -------------------------------------------- */

#logo p {
	font-family: 'Poppins', sans-serif;
	margin-bottom: 0;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
}

#logo img {
	width: 100px;
	margin-left: -13px;
}



/* ==========================================================================           
 *
 *    06 - Copyright
 *
 * ========================================================================== */

#copyright {
	margin-top: 1rem;
}

#copyright p {
	margin-bottom: 0;
	font-size: 12px;
}

#copyright p a {
	color: #0066B8;
	font-weight: 700;
}



/* ==========================================================================           
 *
 *    07 - Responsive Layout
 *
 * ========================================================================== */

@media only screen and ( max-width: 32.5em ) /* 520 */
{
	body {
		font-size: 13px;
	}
	
	section .container-fluid {
		padding-top: 2rem;
		padding-bottom: 2rem;
		padding-left: 0;
		padding-right: 0;
	}
	
	section .container {
		padding-left: 0;
		padding-right: 0;
	}

	.form-wrapper {
		padding: 2rem 1rem;
	}

	h3 {
		margin-bottom: 2rem;
		font-weight: 700;
		font-size: 16px;
	}
	
	#instructions h6 {
		font-size: 14px;
	}

	#instructions {
		margin-left: 0;
	}

	#instructions ul {
		margin-bottom: 0;
		padding-left: 1rem;
		font-size: 12px;
	}

	.private-link {
		padding-bottom: 4rem;	
	}

	.form-check-private {
		padding-right: 0;
	}
	
	#splitter {
		margin-top: 2rem;
		margin-bottom: 2rem;
	}
	
	.slider.slider-horizontal {
		width: 170px;
	}

	.form-check-private #link-time #counter-left, 
	.form-check-private #link-multi-time #counter-left {
		margin-left: 0;
		font-size: 12px;
	}

	.form-check-private #link-time #counter-right, 
	.form-check-private #link-multi-time #counter-right {
		font-size: 12px;
	}
	
}


