/************************************
 To overwrite css properties, uncomment/edit them.
 If you decide to change the size of elements,
 please keep in mind both mobile and desktop layouts (media queries)
************************************/

/*******************************
        Preview/Wrapper
********************************/
.flashlight-imageupload-preview {
    width: 100%;
    max-width: 350px;
    height: 200px;
    margin: auto;
    /* padding-top: 140px; */
    background-color: transparent;
    border-radius: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 15px;
}
.flashlight-imageupload-preview img{
	width: auto;
    height: 100%;
	max-width: 100%;
	max-height: 100%;
}

.flashlight-imageupload-preview.rotate90 {
    rotate: 90deg;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    max-width: 200px;
}

.flashlight-imageupload-input-wrapper {
    position: relative;
    margin: auto;
    text-align: center;
    width: 100px;
    display: inline-block;
}

.flashlight-imageupload-input-wrapper input {
    margin: 0 auto;
    width: 60px;
    position: absolute;
    z-index: 1;
    height: 100%;
    border-radius: 0;
    opacity: 0;
}

.flashlight-imageupload .upload-complete{
    color: #128E66;
}

.flashlight-imageupload .upload-failed{
    color: #D85E14;
}

.flashlight-imageupload .upload-progress{
    color: #D85E14;
}

.flashlight-imageupload .btn{
    color: white;
    width: auto;
    height: auto;
    border-radius: 15px;
    font-size: 1em;
}

.flashlight-imageupload .help-block span i {
    font-size: 1em;
}

/*******************************
        Input
*******************************/
.flashlight-imageupload .flashlight-imageupload-input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}
/************************************
        Opt Out
*************************************/
.flashlight-imageupload table.generic-table thead tr th.optOutLabelWrapper{
    /*color: #da5124;*/
}
.flashlight-imageupload table .optOutWrapper .shown-when-not-selected {
    /*color: #7e7e7e;*/
}
.flashlight-imageupload table .optOutWrapper .shown-when-selected{
    /*color: #EC5D2F;*/
}

/************************************
        Custom question CSS rules

It is not recommended to edit this part.
*************************************/
.flashlight-imageupload {
    display: block;
}
.flashlight-imageupload table{
    width: 100%;
}
.flashlight-imageupload table td{
    text-align: center;
}
.mobile-only{
	display: none;
}
.icon-wrapper{
	display: flex;
	align-items: center;
	justify-content: center;
}
@media only screen and (max-width: 600px) {
	.mobile-only{
		display: block;
	}
	.icon-wrapper{
		justify-content: space-between;
		min-width: 180px;
	}
}