/* Cropit */
.cropit-preview {
	background-color: #f8f8f8;
	background-size: cover;
	border: 1px solid #f8f8f8;
	border-radius: 50%;
	margin-top: 7px;
	width: 200px;
	height: 200px;
}

.cropit-preview-image-container {
	cursor: move;
	border-radius: 50%;
}

.image-size-label {
	margin-top: 10px;
}

input {
	display: block;
}

button[type="submit"] {
	margin-top: 10px;
}

#result {
	margin-top: 10px;
	width: 900px;
}

#result-data {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	word-wrap: break-word;
}

.cropit-image-zoom-input {
}

 .btn-crop {
    display: inline-block;
    padding: 2px 5px;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 20px;
}

 .btn-success {
    color: var(--primary);
    background-color: #ffffff
    border-color: #ffffff;
}

 .btn-crop:hover {
    color: #ffffff;
}

 .fileinput-button {
    position: relative;
    overflow: hidden;
}

 .fileinput-button input {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    opacity: 0;
    -ms-filter:'alpha(opacity=0)';
    font-size: 200px;
    direction: ltr;
    cursor: pointer;
}

/* Barra tamanho imagem */

.cropit-image-zoom-input {
    -webkit-appearance: none;
	width: 50%;
	margin: 10px auto;
    height: 10px;
    border-radius: 5px;
    background: #000;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.cropit-image-zoom-input:hover {
    opacity: 1;
}

.cropit-image-zoom-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}

.cropit-image-zoom-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}