/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
 
.ap-post-form-wrapper {
    --autopost-form-bg: #ffffff;
    --autopost-primary: #F73859;
    --autopost-white: #ffffff;
    --autopost-page-tilte-color: #202124;
    --autopost-page-tilte-size: 28px;
    --autopost-tilte-color: #2b3940;
    --autopost-tilte-size: 22px;
    --autopost-border-color: #e4e4e4;
    --autopost-global-color: #6b6e6f;
    --autopost-global-size: 16px;
    --autopost-alternate-bg: #edf6f1;
    --autopost-font-family: 'Outfit', sans-serif;
}
.ap-post-form-wrapper {
    position: relative;
    width: 100%;
    color: var(--autopost-global-color);
    line-height: 1.5;
    font-size: var(--autopost-global-size);
    font-weight: 400;
    font-family: var(--autopost-font-family);
}
.ap-video-box iframe {
    width: 100%;
    min-height: 480px;
    display: flex;
    border-radius: 10px 10px 0px 0px;
}
.ap-video-box {
    margin: 0 auto 50px;
    padding: 0;
    box-shadow: 0 0 20px rgb(0 0 0 / 3%);
    border-radius: 10px;
    border: 1px solid #efefef;
}
.ap-video-box .ap-video-content h4 {
    margin: 0  !important;
    font-size: 18px;
    color: #202124;
    line-height: 1;
    text-transform: capitalize;
    display: inline-block;
    width: 100%;
    padding: 0;
    font-weight: 600;
}
.ap-video-box .ap-video-content {
    margin: 0 !important;
    padding: 20px 20px;
}
.ap-video-box .ap-video-content p {
    margin: 10px 0 0px;
    font-size: 15px;
}
/* Input Field */
.ap-form-group {
    position: relative;
    margin: 0 0 20px;
}
.ap-form-group label {
    font-family: var(--autopost-font-family);
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 6px;
}
.ap-form-group input, .ap-form-group select, .ap-form-group textarea {
    background: var(--autopost-white);
    border: 1px solid var(--autopost-border-color);
    min-height: 50px;
    padding: 0 20px;
    width: 100%;
    border-radius: 6px !important;
    box-shadow: none !important;
    outline: 0 !important;
}
.ap-form-group input:focus,
.ap-form-group select:focus,
.ap-form-group textarea:focus {
    border-color: var(--autopost-primary);
}
.ap-form-group textarea {
    padding: 15px 20px;
    min-height: 100px;
}
.ap-form-group select {
    cursor: pointer;
}
/* Progress Bar */
.ap-progress {
    display: -ms-flexbox;
    display: flex;
    height: 20px;
    overflow: hidden;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: .25rem;
	margin-top: 10px;
}
.ap-progress-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #28a745;
    transition: width .6s ease;
	font-size: 16px;
	text-align: center;
}
#uploadStatus{
	padding: 10px 20px;
    margin-top: 0px;
	font-size:18px;
	text-align: center;
}

/*File Upload */
.ap-file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 50px;
}
.ap-file-upload-wrapper:after {
    content: attr(data-text);
    font-size: var(--autopost-global-size);
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    padding: 0 20px;
    display: block;
    width: calc(100% - 40px);
    pointer-events: none;
    z-index: 20;
    height: 50px;
    line-height: 50px;
    color: var(--autopost-global-color);
    border-radius: 5px 10px 10px 5px;
    font-weight: 400;
    border: 1px solid var(--autopost-border-color);
}
.ap-file-upload-wrapper:before {
    content: "Upload";
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    height: 50px;
    background: var(--autopost-primary);
    color: #fff;
    font-weight: 500;
    z-index: 25;
    font-size: var(--autopost-global-size);
    line-height: 50px;
    padding: 0 15px;
    text-transform: capitalize;
    pointer-events: none;
    border-radius: 0 5px 5px 0;
}
.ap-file-upload-wrapper input {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  height: 50px;
  margin: 0;
  padding: 0;
  display: block;
  cursor: pointer;
  width: 100%;
}
.ap-post-form-wrapper {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
}
 /* Buttons */
.ap-btn {
    background: rgb(247 56 89 / 5%);
    color: var(--autopost-primary);
    padding: 10px 20px;
    border-radius: 6px;
    min-width: 120px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid var(--autopost-primary);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    font-size: var(--autopost-global-size);
}
.ap-btn:hover, .ap-btn:focus {
    background: var(--autopost-primary);
    color: var(--autopost-white);
    border-color: var(--autopost-primary);
    box-shadow: none;
}
.ap-btn:hover, .ap-btn:focus, .ap-btn {
    -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
    transition: all 0.5s;
}
/* Tags */
.tags-input-wrapper{
	background: transparent;
	padding: 10px;
	border-radius: 4px;
	max-width: 400px;
	border: 1px solid #ccc
}
.tags-input-wrapper input{
	border: none;
	background: transparent;
	outline: none;
	width: 140px;
	margin-left: 8px;
}
.tags-input-wrapper .tag{
	display: inline-block;
	background-color: #fa0e7e;
	color: white;
	border-radius: 40px;
	padding: 0px 3px 0px 7px;
	margin-right: 5px;
	margin-bottom:5px;
	box-shadow: 0 5px 15px -2px rgba(250 , 14 , 126 , .7)
}
.tags-input-wrapper .tag a {
	margin: 0 7px 3px;
	display: inline-block;
	cursor: pointer;
}
.ap-upload-div{
	width: 350px;
	margin:auto;
	background-color: #f3f3f3;
	color: #333;
    padding: 12px;
	box-shadow: 0 0px 10px 1px rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
	font-size: 16px;
}
.ap-upload-div h4{
	text-align: center;
	text-transform: uppercase;
	font-size: 18px;
	color: #666;
	margin-top: 0;
}
.ap-upload-div input[type="file"] {
    display: block;
    width: 100%;
    height: 25px;;
    padding: 8px;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.ap-upload-div input[type="file"]:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
.ap-upload-div input[type="submit"]{
	display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1.5rem;
    line-height: 1.5;
    border-radius: .25rem;
	color: #fff;
    background-color: #007bff;
    border-color: #007bff;
	margin-top: 10px;
	cursor: pointer;
}
.ap-upload-div input[type="submit"]:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}
.ap-progress {
    display: none;
}
@media(max-width:991.98px) {
    .ap-video-box iframe {
        min-height: 380px;
    }
}
@media(max-width:575.98px) {
    .ap-video-box iframe {
        min-height: 300px;
    }
}