/* Copied from short code - starts */

.wpdevlms_prdcr {
	   text-align: center;
}

.wpdevlms_prdcr h1 {
	margin-top: 0;
	font-size: 30px;
	margin-bottom: 15px!important;
	margin-right: 10px;
}
.wpdevlms_prdcr .poc-cf-pw-type {
    color: #c3c3c3;
    font-size: 18px;
}

.wpdevlms_prdcr .prdcr_container {
    clear:both;           
    width:100%; 
    border-left: solid 1px #CCC;
    border-right: solid 1px #CCC;
    border-bottom: solid 1px #CCC;
    border-top: solid 1px #CCC;
    text-align:left;
    padding: 10px;
    background-color: #fff;

}
.wpdevlms_prdcr .synonym {
    background-color: #cccccc !important;
    padding: 10px !important;
    width: auto !important;
    cursor: default !important;
    margin-bottom: 7px;
}
.wpdevlms_prdcr .in-context {
    text-align: center;
    font-size: 17px;
    padding-top: 15px;
    margin-bottom: 0;
}

/* Copied from short code - ends */

.wpdevlms-resources-archive-container {
	display: grid;
	grid-template-columns: auto auto auto;
	padding: 10px;
	grid-gap: 30px 20px;
}

.wpdevlms-resources-archive-item {
	background-color: #fff;
	padding: 20px 10px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06), 0 5px 5px rgba(9, 11, 19, 0.02);
	border: 1px solid #ebe9e6;
	border-radius: 4px;
	height: fit-content;
}

#prdcr-result{
	color: #ff0000;
}

#prdcr-form-wrap .wrap{
	margin-bottom: 15px;
}

#prdcr-form-wrap .wrap-inner{
	display: inline-block;
	margin-right: 15px;
}

#prdcr-form-wrap input,
#prdcr-form-wrap textarea{
	width: 100%;
}

.prdcr-loader-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.prdcr-loader-container.hide{
	display: none;
}

.prdcr-loader {
	border: 4px solid #f3f3f3;
	border-top: 4px solid #3498db;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	animation: spin 2s linear infinite;
}

.upload-container {
    position: relative;
}
body .upload-container input {
    border: 1px solid #92b0b3;
    background: #f1f1f1;
    outline: 2px dashed #92b0b3;
    outline-offset: -10px;
    padding: 50px 25px 100px;
    text-align: center !important;
    width: 500px;
}
 
body .upload-container input:hover {
    background: #ddd;
}
 
body .upload-container:before {
    position: absolute;
    top: 100px;
    left: 25px;
    content: " (or) Drag and Drop files here. ";
    color: #3f8188;
    font-weight: 900;
}

body .upload-btn {
    margin-left: 300px;
    padding: 7px 20px;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-width : 320px) and (max-width : 480px) {
	.wpdevlms-resources-archive-container {
		grid-template-columns: 100%;
	}
	#prdcr-form-wrap .wrap-inner{
		width: 100%;
		margin-bottom: 10px;
		margin-right: 0;
	}
}

/* Smartphones (portrait) ----------- */
@media only screen and (max-width : 320px) {
	.wpdevlms-resources-archive-container {
		grid-template-columns: 100%;
	}
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-width : 480px) and (max-width : 1024px) {
	.wpdevlms-resources-archive-container {
		grid-template-columns: 50% 50%;
	}
}