*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 32px;
    color: #707070;
    background-color: #F0EFEF;
}
.wrap-center{
    max-width: 350px;
    margin: 30px auto;
    padding-top: 70px;

}
.wrap-inner{
    background-color: #fff;
    text-align: center;
    border-radius: 15px;
    height: 500px;
    box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.log-page{
    padding: 50px 50px;
}
.album-create-page{
    padding: 18px 10px;
}
.logo_div{
            background: #ffffff;
            padding: 20px;
            position: fixed;
            top:0px;
            width: 100%;
            background-color: rgba(255,255,255,0.5);  
            z-index: 999;

             
        }
        .logo{
            display: block;
            margin: auto;
        }
        .item-content span {
            display: inline;
        }
        span.item-filesize {
            display: block;
        }
.log-page h3{
    font-size:25px;
    font-weight: 400;
}
.log-page p{
    font-size:18px;
    font-weight: 300;
    line-height: 18px;
    margin: 10px 0 30px 0;
}

.log-page input{
    width: 100%;
    border: 1px solid #707070;
    border-radius: 15px;
    padding: 10px 15px;
    color: #707070;
    font-size: 20px;
    margin-bottom: 15px;
}
.proceed-btn input[type=submit]{
    width: auto;
    float: right;
    background-color: #279BFF;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
}

.file-upload{
    position: relative;
    width: 100%;
    height: 100%;
}

.file-upload [type="file"] {
  height: 0;
  overflow: hidden;
  width: 0;
}
.file-upload [type="file"] + label {
	background: #fff;
	border: none;
	border-radius: 55px;
	font-size: 32px;
	color: #707070;
	cursor: pointer;
	display: inline-block;
	font-weight: 400;
	margin-bottom: 1rem;
	outline: none;
	padding: 167px 0;
	position: absolute;
	vertical-align: middle;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.file-upload label{
    height: 100%;
}
.file-upload label span{
    display: block;
}
.file-upload label span.small-text{
    display: block;
    font-size: 16px;
    font-weight: 400;
}
.file-upload span i{
    font-size: 70px;
    color: #56A1F8;
}


/* More File uplaod */
.file-upload-more{
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: : 40px;

}
.pad-up{
    padding: 15px;
}
.file-upload-more [type="file"] {
  height: 0;
  overflow: hidden;
  width: 0;
}
.file-upload-more [type="file"] + label {
	background: #fff;
	border: none;
	margin-bottom: 1rem;
	outline: none;
	padding: 0;
	position: relative;
	vertical-align: middle;

}
.file-upload-more label.flex-box{
    display: flex;
}
.file-upload-more label h3{
    text-align: left;
    font-size: 25px;
	color: #707070;
	cursor: pointer;
	font-weight: 400;
    margin-left: 10px;
}
.file-upload-more label span.small-text{
    display: block;
    font-size: 16px;
    font-weight: 400;
}
.file-upload-more span i{
    font-size: 50px;
    color: #56A1F8;
}



/* File control */
.file-upload-procee-list{
    max-height: 380px;
    overflow-y: auto;
}
.file-upload-procee-list ul{
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}
.file-upload-procee-list ul li{
    display: block;
    width: 100%;
    padding: 5px 0;
    border-bottom: 0px solid rgba(112, 112, 112, 0.5);
}
.upload-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.w-10{
    width: 10%;
}
.w-20{
    width: 20%;
}

.w-60{
    width: 60%;
}
.item-content{
    padding-left: 5px;
}
.item-content span{
    display: block;
}
span.item-name{
    font-size: 18px;
    color: #707070;
    line-height: 18px;
    font-weight: 500;
}
span.item-filesize{
    font-size: 14px;
    color: #707070;
}
.item-action a{
    color: #F75959;
    font-size: 28px;
}
.item-preview img{
    width: 100%;
}
.container-label {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.container-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.container-label .checkmark {
	position: absolute;
	top: -14px;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #A3A3A3;
    border-radius: 3px;
}
.container-label:hover input ~ .checkmark {
  background-color: #ccc;
}

.container-label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.container-label input:checked ~ .checkmark:after {
  display: block;
}
.container-label .checkmark:after {
  left: 9px;
  top: 5px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


.uplaod-progress{
    width: 100%;
    height: 4px;
    background-color: #f1f1f1;
    display: block;
    margin: 0;
    position: relative;
}
.upload-complete{
    position: absolute;
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #6FDA44;
}


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

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.btn-gruop{
    margin-top:20px;
    text-align: center;
}
.btn{
    display: inline-block;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
	font-weight: 500;
	cursor: pointer;
	padding: 10px 20px;

}
.btn-normal{
	color: #279BFF;

}
.btn-fill{
	background-color: #279BFF;
	color: #fff;
}


.thank-you-page{
    padding: 100px 30px;
}
.thank-you-page span i{
    font-size: 120px;
    margin: 20px 0;
    color: #86FC86
}
