/**
 * Wired Impact Volunteer Management
 * All of the CSS for the public-facing functionality of the plugin.
 */

#content .ast-container{
	max-width: 1450px;
}

/* General Volunteer Opp Styles */
.stm-vm-tasks-info {
	padding: 0 0 1em;
}
.stm-vm-tasks-info span {
	display: block;
	padding: 2px 0;
}


/* Volunteer Opp List Styles */
.volunteer-opps .volunteer_opp {
	border-bottom: 1px solid #bebebe;
	margin: 0;
	padding: 0;
	box-shadow: none;
}

.volunteer-opps .volunteer_opp + .volunteer_opp {
	margin-top: 0;
}

.volunteer-opps .volunteer_opp header,
.volunteer-opps .volunteer_opp .entry-title {
	padding: 0;
}

.volunteer-opps .volunteer_opp .entry-title {
	margin-top: 1.1em;
}

.volunteer-opps .entry-content {
	padding: 0 0 2em;
}

.volunteer-opps .navigation div {
	padding-top: 1em;
}

/* Sign Up Form Styles */
#stm-vm-sign-up-form {
	max-width: 500px;
}

#stm-vm-sign-up-form label {
	margin-top: .5em;
	display: block;
}

#stm-vm-sign-up-form label:first-child {
	margin-top: 0;
}

#stm-vm-sign-up-form input[type=text],
#stm-vm-sign-up-form input[type=email] {
	display: block;
}

#stm-vm-sign-up-form input[type=submit] {
	margin-top: 3em;
}

.stm-vm-message {
	display: none;
	font-size: .9em;
	font-style: italic;
    text-align: center;
    margin: 20px 0 0;
}

.stm-vm-message.error,
.stm-vm-message.already-rsvped,
.stm-vm-message.rsvp-closed {
	color: #990000;
}

.stm-vm-message.success {
	color: #21732a;
}

.stm-vm-message.error{
    color: #e63945;
}

#stm-vm-sign-up-form .field-error {
	border: 2px solid #990000;
}

/* Widget Styles */
.widget_wi_volunteer_management_widget ul li span {
	display: block;
}

.widget_wi_volunteer_management_widget li strong {
	font-weight: normal;
}

:root{
	--user-account-link-color: #3c9fbc;
	--user-account-link-hover-color: #000;
	--user-account-button: #178498;
}

.stm-vm-account-wrapper{
	display: flex;

	margin: 7em 0;
	padding: 2em 1.5em;
	background: #fff;
}

.stm-vm-account-sidebar{
	flex: 1 1 16%;
    /*min-width: 230px;*/
    max-width: 230px;
}

.stm-vm-account-right-bar{
	flex: 0 1 auto;
	display: flex;
	flex-direction: column;
	/*justify-content: flex-end;*/
	margin: 0 0 50px;
	padding: 0 0 0 40px;
	min-width: 160px;
}

.stm-vm-account-right-bar__inside{
    position: sticky;
    top: 0;
}

.stm-vm-account-right-bar h3{
    font-size: 27px;
    text-align: center;
    margin: 0 0 15px;
}

.stm-vm-account-profile-info{
	/*padding: 0 20px;*/
	text-align: center;
}

.stm-vm-account-profile-photo{
	margin: 0 0 15px;
	padding: 0 20px;
	position: relative;
}

.stm-vm-account-edit-photo label{
	background: var(--user-account-button);
	padding: 5px 15px;
	margin: 20px 0 0;
	color: #fff;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 15px;
	display: inline-block;
	border-radius: 50px;
	cursor: pointer;
	border: 2px solid transparent;
}

.stm-vm-account-edit-photo label:hover,
.stm-vm-account-edit-photo label:focus{
	background: #fff;
	border-color: var(--user-account-button);
	color: var(--user-account-button);
}

.stm-vm-account-edit-photo #edit-photo{
	display: none;
}

.stm-vm-account-delete-photo{
	background: var(--user-account-button);
	padding: 5px;
	border-radius: 50px;
	border: 2px solid transparent;
	transition: all .3s ease 0s;
	width: 36px;
	height: 36px;
	position: absolute;
	top: 10px;
	right: 10px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
	cursor: pointer;
}

.stm-vm-account-delete-photo svg{
	width: 20px;
	height: 20px;
	fill: #fff;
	display: inline;
	vertical-align: middle;
}

.stm-vm-account-profile-photo img{
	width: 200px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.stm-vm-account-delete-photo:hover,
.stm-vm-account-delete-photo:focus{
	border-color: var(--user-account-button);
	background: #fff;
}

.stm-vm-account-delete-photo:hover svg,
.stm-vm-account-delete-photo:focus svg{
	fill: var(--user-account-button);
}

.stm-vm-account-profile-name{
	font-size: 20px;
	line-height: 1.3;
	font-weight: 700;
	margin: 0 0 15px;
}

.stm-vm-account-role{
	font-size: 16px;
	line-height: 1.2;
	font-weight: 400;
	margin: 0 0 10px;
}

.stm-vm-account-content{
	flex: 2 0 55%;
	padding: 0 0 0 20px;
}

.stm-vm-account-content p{
	font-size: 18px;
	font-weight: 500;
}

.stm-vm-account-content a,
.stm-vm-info-item a{
	color: var(--user-account-link-color);
}

.stm-vm-account-content a:hover,
.stm-vm-info-item a:hover{
	color: var(--user-account-link-hover-color);
}

.stm-vm-account-logout{
	background: var(--user-account-button);
	padding: 5px 10px;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .7px;
	display: inline-block;
}

.stm-vm-account-logout:hover,
.stm-vm-account-logout:focus{
	background: var(--user-account-link-color);
	color: #fff;
}

.stm-vm-account-logout__icon{
	display: none;
}

.stm-vm-account-links{
	list-style: none;
	padding: 0;
	margin: 50px 0 0;
	position: relative;
}

.stm-vm-account-links:before{
	content: '';
	position: absolute;
	top: -30px;
	right: 0;
	height: 30px;
	width: 2px;
	background: #efefef;
	display: inline-block;
}

.stm-vm-account-links li{
	border-top: 2px solid;
	border-right: 2px solid;
	border-color: #efefef;
	display: flex;
	align-items: center;
}

/*.stm-vm-account-link--history{*/
/*    padding-left: 30px;*/
/*}*/

.stm-vm-account-links a{
	font-size: 17px;
	text-transform: uppercase;
	flex: 0 0 100%;
	display: block;
	padding: 15px 15px 10px 2px;
	color: var(--user-account-link-color);
	font-weight: 400;
	letter-spacing: 1px;
}

.stm-vm-account-links a:hover,
.stm-vm-account-links a.active{
	color: var(--user-account-link-hover-color);
}

.stm-vm-account-link-icon{
	vertical-align: middle;
	display: inline-block;
	margin: 0 10px -5px 0;
}

.stm-vm-account-link-icon svg{
	width: 25px;
}

.stm-vm-account-link-icon svg path,
.stm-vm-account-link-icon svg circle{
	fill: var(--user-account-link-color);
}

.stm-vm-account-links a:hover .stm-vm-account-link-icon svg path,
.stm-vm-account-links a:hover .stm-vm-account-link-icon svg circle,
.stm-vm-account-links a.active .stm-vm-account-link-icon svg path,
.stm-vm-account-links a.active .stm-vm-account-link-icon svg circle{
	fill: var(--user-account-link-hover-color);
}

.stm-vm-sign-in,
.stm-vm-restore-password{
	max-width: 500px;
	margin: 0 auto;
}

.stm-vm-form__group{
	display: flex;
	flex-wrap: wrap;
	margin: 20px -10px 0;
}

.stm-vm-form__group--password{
	margin-top: 50px;
}

#stm-vm-sort-history .stm-vm-form__field{
    margin: 0 0 30px;
}

#stm-vm-sort-history label{
    display: inline-block;
    padding: 0 10px 0 0;
}

.stm-vm-form__field,
.stm-vm-form__actions{
	margin: 30px 0 0;
}

.stm-vm-form__group--title{
    margin: 25px 0 0;
}

.stm-vm-form__group--title + .stm-vm-form__field{
    margin: 15px 0 0;
}

.stm-vm-form__field:first-child{
	margin-top: 0;
}

.stm-vm-form__field label{
	display: block;
	margin-top: 0.5em;
	font-weight: 700;
	font-size: 17px;
}

.stm-vm-form__group .stm-vm-form__field{
	flex: 0 0 50%;
	margin-top: 0;
	padding: 0 10px;
}

.stm-vm-form .stm-vm-form__control{
	width: 100%;
	margin: 10px 0 0;
	background: #fafafa;
	color: #555;
	font-weight: 400;
    line-height: 1.2;
    font-size: 1rem;
	border: 1px solid #dddddd;
	-webkit-appearance: none;
	-webkit-rtl-ordering: logical;
	-webkit-user-select: text;
}

.stm-vm-form .stm-vm-form__control .ms-choice{
    background: transparent;
    border: none;
    padding: 0.75em;
    border-radius: 0;
    height: 47px;
    font-weight: 400;
    line-height: 1.2;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: inherit;
    font-family: 'Source Sans Pro',sans-serif;
}

.stm-vm-form .stm-vm-form__control .ms-choice:hover,
.stm-vm-form .stm-vm-form__control .ms-choice:focus{
    color: var(--user-account-link-color);
}

.stm-vm-form .stm-vm-form__control .ms-choice > span{
    padding: 0.75em;
}

.stm-vm-form .stm-vm-form__control:disabled{
	opacity: .8;
}

.stm-vm-form .stm-vm-form__control:focus,
.stm-vm-form .stm-vm-form__control:active,
.stm-vm-form .stm-vm-form__control:visited,
.stm-vm-form .stm-vm-form__control:focus-visible,
.stm-vm-form .stm-vm-form__control:-webkit-autofill{
	border: 1px solid #dddddd;
	background: #fff;
	outline: none;
}

.stm-vm-form__control[type="file"] {
    height: 0.1px;
    width: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
.stm-vm-form__control[type="file"] + label {
    background-color: #000;
    color: #f1e5e6;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4em;
    overflow: hidden;
    padding: 0.625rem 1.25rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.stm-vm-form__control[type="file"] + label svg {
    fill: currentColor;
    height: 1em;
    width: 1em;
    margin-top: -0.25em;
    margin-right: 0.25em;
    vertical-align: middle;
}
.stm-vm-form__control[type="file"] + label:hover {
    background-color: #722040;
}
.stm-vm-form__control[type="file"]:focus + label {
    background-color: #722040;
    outline: 1px dotted #000;
}

#content .stm-vm-form__submit{
	background: var(--user-account-button);
	color: #fff;
	margin: 20px 10px 0;
	border: 2px solid transparent;
	transition: all .3s ease 0s;

	padding: 17px 38px;
	border-radius: 50px;
}

#content .stm-vm-form__submit:hover,
#content .stm-vm-form__submit:focus{
	background: #fff;
	border-color: var(--user-account-button);
	color: var(--user-account-button);
}

.stm-vm-form__lost_password{
	text-align: center;
	margin: 20px 0 0;
}

.stm-vm-form__lost_password--action{
	text-transform: uppercase;
	color: var(--user-account-button)
}

.stm-vm-form__lost_password--form{
	display: none;
}

.stm-vm-form__remember_me{
	display: block;
}

.stm-vm-form__checkbox input{
	width: 15px;
	height: 15px;
	margin: 10px 0 0;
}

.stm-vm-form__description{
	font-size: 15px;
	font-weight: 400;
	padding: 5px 0 0 10px;
	display: inline-block;
	font-style: italic;
	color: #7f7f7f;
}

.stm-vm-form__checkbox--inner,
.stm-vm-form__checkbox--label{
	vertical-align: middle;
}

.stm-vm-form__checkbox--label{
	margin: 0 0 0 10px;
}

.stm-vm-form-search-items{
	display: flex;
	justify-content: center;
	margin: 50px 0 70px;
}

.stm-vm-form-search-items .search-submit{
	font-size: 0;
	background: #1b1b1b;
	width: 46px;
	height: 46px;
	padding: 0;
	border-radius: 0;

	vertical-align: top;
}

.stm-vm-form-search-items .search-form{
	font-size: 0;
}

.stm-vm-form-search-items label{
	display: inline-block;
	vertical-align: top;
	width: 350px;
}

.stm-vm-form-search-items .search-field{
	font-weight: 400;
	font-size: 16px;
	width: 100%;
	margin-top: 0;
}

.stm-vm-form-search-items .search-submit svg{
	fill: #fff;
}

/* Items list table */

.stm-vm-items-wrapper ul.page-numbers{
	list-style: none;
	margin: 50px 0 0;
	display: flex;
	justify-content: center;
}

.stm-vm-items-wrapper .page-numbers li{
	margin: 0 5px;
}

.stm-vm-items-wrapper .page-numbers li > .page-numbers{
	background: #1b1b1b;
	color: #fff;
	width: 25px;
	height: 25px;
	border-radius: 3px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.stm-vm-items-wrapper .page-numbers li > .page-numbers.current{
	border: 1px solid #1b1b1b;
	background: #fff;
	color: #1b1b1b;
}

.stm-vm-items-list{
	border: 1px solid;
	border-bottom: none;
	display: table;
	width: 100%;
}

#stm-vm-items-list{
	display: table-row-group;
}

.stm-vm-items-list__wrapper{
    max-width: 950px;
    width: 100%;
}

.stm-vm-items-list__info{
    margin: 0 0 20px;
    padding: 8px 15px;
}

.stm-vm-items-list__info p{
    margin-bottom: 0;
}

.stm-vm-items-list__info--success{
    background-color: #e7f3fe;
    border-left: 6px solid #3c9fbc;
}

.stm-vm-items-list__info--bottom{
    font-size: 21px;
    font-weight: 600;
    margin: 50px 0 0;
    text-align: center;
}

.stm-vm-items-list__info--bottom h3,
.stm-vm-items-list__wrapper h3{
    font-size: 27px;
    text-align: center;
    margin: 0 0 10px;
}

.stm-vm-items-list__wrapper h3{
    margin: 0 0 25px;
}

.stm-vm-items-list__info--bottom p{
    font-weight: 600;
}

.stm-vm-volunteer-leader{
    margin: 0 0 20px;
    padding: 8px 5px;
    border: 2px solid #efefef;
    cursor: pointer;
}

.stm-vm-volunteer-leader__inner{
	text-align: center;
	font-weight: 400;
}

.stm-vm-volunteer-leader__full-name{
	color: var(--user-account-link-color);
}

.stm-vm-volunteer-leader__inner svg{
    margin: 0 10px 0 0;
}

.stm-vm-items-wrapper.loading .lds-roller {
	display: block;
	position: relative;
	width: 80px;
	height: 80px;
	margin: 20px auto 0;
}
.stm-vm-items-wrapper.loading .lds-roller div {
	animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	transform-origin: 40px 40px;
}
.stm-vm-items-wrapper.loading .lds-roller div:after {
	content: " ";
	display: block;
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #000;
	margin: -4px 0 0 -4px;
}
.stm-vm-items-wrapper.loading .lds-roller div:nth-child(1) {
	animation-delay: -0.036s;
}
.stm-vm-items-wrapper.loading .lds-roller div:nth-child(1):after {
	top: 63px;
	left: 63px;
}
.stm-vm-items-wrapper.loading .lds-roller div:nth-child(2) {
	animation-delay: -0.072s;
}
.stm-vm-items-wrapper.loading .lds-roller div:nth-child(2):after {
	top: 68px;
	left: 56px;
}
.stm-vm-items-wrapper.loading .lds-roller div:nth-child(3) {
	animation-delay: -0.108s;
}
.stm-vm-items-wrapper.loading .lds-roller div:nth-child(3):after {
	top: 71px;
	left: 48px;
}
.stm-vm-items-wrapper.loading .lds-roller div:nth-child(4) {
	animation-delay: -0.144s;
}
.stm-vm-items-wrapper.loading .lds-roller div:nth-child(4):after {
	top: 72px;
	left: 40px;
}
.stm-vm-items-wrapper.loading .lds-roller div:nth-child(5) {
	animation-delay: -0.18s;
}
.stm-vm-items-wrapper.loading .lds-roller div:nth-child(5):after {
	top: 71px;
	left: 32px;
}
.stm-vm-items-wrapper.loading .lds-roller div:nth-child(6) {
	animation-delay: -0.216s;
}
.stm-vm-items-wrapper.loading .lds-roller div:nth-child(6):after {
	top: 68px;
	left: 24px;
}
.stm-vm-items-wrapper.loading .lds-roller div:nth-child(7) {
	animation-delay: -0.252s;
}
.stm-vm-items-wrapper.loading .lds-roller div:nth-child(7):after {
	top: 63px;
	left: 17px;
}
.stm-vm-items-wrapper.loading .lds-roller div:nth-child(8) {
	animation-delay: -0.288s;
}
.stm-vm-items-wrapper.loading .lds-roller div:nth-child(8):after {
	top: 56px;
	left: 12px;
}
@keyframes lds-roller {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


.stm-vm-data-item__th,
.stm-vm-data-item{
	display: table-row;
}

.stm-vm-data-item > *,
.stm-vm-data-item__th > *{
	display: table-cell;
	padding: 5px 10px;
	text-align: center;
	border-right: 1px solid;
	border-bottom: 1px solid;
    vertical-align: middle;
}

.stm-vm-data-item__th > *{
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	padding: 10px 15px;
}

.stm-vm-data-item > *{
	font-size: 18px;
	font-weight: 400;
    width: 170px;
}

.stm-vm-data-item__name-organization,
.stm-vm-data-item__planned-worked,
.stm-vm-data-item__action-performed{
    width: 220px;
}

.stm-vm-data-item:not(.stm-vm-data-item__rsvp, .stm-vm-data-item__history) .stm-vm-data-item__opportunity{
    width: 60%;
}

.stm-vm-data-item__rsvp .stm-vm-data-item__opportunity{
    width: 40%;
}

.stm-vm-data-item__rsvp .stm-vm-data-item__action-performed{
    width: 35%;
}

.stm-vm-data-item__status{
    width: 250px;
}

.stm-vm-data-item__actions{
    width: auto;
}

.stm-vm-data-item > *:last-child,
.stm-vm-data-item__th > *:last-child{
	border-right: none;
}

.stm-vm-data-item > *:not(.stm-vm-data-item__actions) span{
    white-space: nowrap;
    display: block;
    width: 150px;
    margin: 0 auto;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stm-vm-data-item > *:not(.stm-vm-data-item__actions){
    position: relative;
}

.stm-vm-data-item > *:not(.stm-vm-data-item__actions):hover:after{
    content: attr(data-value);
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    /*min-width: 169px;*/
    min-width: 100%;
    height: 100%;
    color: #1e2d3e;
    font-size: 18px;
    font-weight: 400;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
	white-space: nowrap;
}

.stm-vm-data-item > .stm-vm-data-item__name-organization:hover:after{
    min-width: 219px;
}

#stm-vm-items-list .stm-vm-data-item > .stm-vm-data-item__name-organization > *{
    width: 200px;
}

#stm-vm-items-list .stm-vm-data-item:not(.stm-vm-data-item__rsvp, .stm-vm-data-item__history) > .stm-vm-data-item__opportunity > *{
    max-width: 545px;
    width: 100%;
    text-align: left;
}

#stm-vm-items-list .stm-vm-data-item__rsvp > .stm-vm-data-item__opportunity > *{
    max-width: 355px;
    width: 100%;
    text-align: left;
}

.stm-vm-data-item > .stm-vm-data-item__opportunity:hover:after{
    justify-content: flex-start;
}

#stm-vm-items-list .stm-vm-data-item__status > *{
    width: 160px;
}

.stm-vm-application__notification{
    background: #b92426;
    color: #fff;
    min-width: 20px;
    height: 20px;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Source Sans Pro',sans-serif;
    line-height: 0.7;
    border-radius: 50%;
    text-align: center;
    padding: 5px 4px 4px;
    display: inline-block;
    position: relative;
    top: -15px;
}

/*.stm-vm-data-item > .stm-vm-data-item__planned-year:hover:after,*/
/*.stm-vm-data-item > .stm-vm-data-item__planned-hours:hover:after,*/
/*.stm-vm-data-item > .stm-vm-data-item__planned-worked:hover:after,*/
/*.stm-vm-data-item > .stm-vm-data-item__opportunity:hover:after,*/
/*.stm-vm-data-item > .stm-vm-data-item__status:hover:after,*/
/*.stm-vm-data-item > .stm-vm-data-item__action-performed:hover:after{*/
/*    width: 100%;*/
/*}*/

.stm-vm-data-item > .stm-vm-data-item__time-served:hover:after{
    min-width: 100%;
}

.stm-vm-data-item__actions{
	display: flex;
	justify-content: center;
}

.stm-vm-data-item__button{
	padding: 10px 0;
	margin: 0 5px;
}

.stm-vm-data-item__button svg{
	fill: var(--user-account-button);
	transition: fill .3s ease 0s;
	vertical-align: middle;
}

.stm-vm-data-item__button:disabled svg{
    fill: #939393;
}

.stm-vm-data-volunteer__action--delete svg{
    fill: #b92426;
}

.stm-vm-items-list__actions{
	text-align: right;
    font-size: 0;
}

.stm-vm-action,
.stm-vm-action:focus{
    background: var(--user-account-button);
    color: #fff !important;
}

.stm-vm-action{
    font: 400 18px/1.85714285714286 "Source Sans Pro", sans-serif;
	letter-spacing: .7px;
    text-transform: none;
	padding: 5px 15px;
	border-radius: 3px;
	display: inline-block;
	margin: 0 10px 20px 0;
}

.stm-vm-items-list__actions .stm-vm-action:last-child{
    margin-right: 0;
}

.stm-vm-action:hover{
	background: var(--user-account-link-color);
}

.stm-vm-data-item__button:hover svg{
	fill: #000;
}

.stm-vm-data-item__no-items{
	padding: 10px 15px;
}

.stm-vm-data-item__no-items--wrapper{
	border-right: 1px solid;
	border-left: 1px solid;
}

.stm-vm-data-item__no-items--wrapper,
.stm-vm-data-item__no-items{
	display: block;
	width: 100%;
}

/* END Items list table */

/* Volunteer page view */
.stm-vm-current-total__hours{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 50px;
}
.stm-vm-current-total__wrapper{
    text-align: center;
    font-size: 25px;
    border: 1px solid;
    max-width: 300px;
    margin: 0 10px 15px;
    padding: 5px 10px;
    border-radius: 5px;
}
.stm-vm-current-total-year{
    border-bottom: 1px solid;
}
.stm-vm-current-total-hour{
    color: #b82720;
}

.stm-vm-current_total__title{
    text-align: center;
    margin: 0 0 30px;
}
/* END Volunteer page view */

/* Confirmation modal */
.stm-vm-modal{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    display: none;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    cursor:pointer;
}

.stm-vm-modal.show{
    display: flex;
}

.stm-vm-modal__content{
    max-width: 400px;
    width: 100%;
    background: #fff;
    margin: 0 auto;
    min-height: 350px;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 15px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;

    position: relative;
    cursor:default;
}

.stm-vm-modal__content .stm-vm-form{
    text-align: left;
}

.stm-vm-modal__close svg{
    width: 25px;
    height: 25px;
}

.stm-vm-modal__close{
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0;
    cursor: pointer;
}

.stm-vm-modal__title{
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}

.stm-vm-modal__bottom{
    margin: 20px 0 0;
}

.stm-vm-modal__button{
    padding: 10px 15px;
    border-radius: 5px;
}

#modal-info-dealer .stm-vm-modal__content,
#modal-application .stm-vm-modal__content,
#modal-users-import .stm-vm-modal__content{
    justify-content: flex-start;
    padding-top: 20px;
    padding-bottom: 60px;

	max-width: 800px;
	min-height: auto;
	overflow-y: auto;
	overflow-x: hidden;
	height: 100%;
	max-height: 550px;
	border-radius: 4px;
}

#modal-users-import .stm-vm-modal__content{
    max-width: 500px;
    max-height: unset;
    height: auto;
}

#modal-info-dealer .stm-vm-modal__title,
#modal-application .stm-vm-modal__title,
#modal-users-import .stm-vm-modal__title{
    margin-bottom: 20px;
}

#modal-application .stm-vm-form__group{
    justify-content: center;
}
/* END Confirmation modal */

.stm-vm-info-item{
    font-size: 18px;
    font-weight: 400;
    display: flex;
}

.stm-vm-info-item > *{
    border-right: 1px solid;
    border-bottom: 1px solid;
    flex: 0 0 50%;
    text-align: left;
    padding: 5px;
}

.stm-vm-info-item__modal > *{
	min-height: 50px;
}

.stm-vm-info-item__modal > *:last-child{
	padding: 5px 5px 5px 15px;
}

.stm-vm-info-item__modal > * > *{
	vertical-align: middle;
}

.stm-vm-info-item > *:last-child{
    border-right: none;
}

/* Time manager */
#stm-vm-time-manager{
	max-width: 600px;
	margin: 0 auto 50px;
	border: 1px solid;
	padding: 5px 10px 20px;
	border-radius: 10px;
}

#stm-vm-time-manager .stm-vm-form__field,
#stm-vm-time-manager .stm-vm-form__actions{
	margin: 0;
}

#stm-vm-time-manager .stm-vm-form__actions{
	text-align: center;
}
/* END Time manager */

.stm-vm-account-header{
    display: none;
    flex: 0 0 100%;
    justify-content: space-between;
    background: var(--user-account-button);
    padding: 10px 0.5em;
    margin: 0 0 1.5em;
}

.stm-vm-account-menu__burger{
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.stm-vm-account-menu__burger span{
    height: 2px;
    background: #fff;
    display: block;
    width: 100%;
    margin-top: 6px;
}

.stm-vm-account-menu__burger span:first-child{
    margin-top: 0;
}

@media screen and (max-width: 1340px) {
	.stm-vm-account-sidebar{
		flex: 0 1 60px;
	}

	.stm-vm-account-logout{
		font-size: 0;
		padding: 5px;
	}

	.stm-vm-account-logout__text{
		display: none;
	}

	.stm-vm-account-logout__icon{
		display: block;
	}

    .stm-vm-account-profile-photo img{
        width: 50px;
        border-radius: 50%;
    }

    .stm-vm-account-profile-name,
    .stm-vm-account-role{
        display: none;
    }

    .stm-vm-account-profile-info{
        padding: 0;
    }

    .stm-vm-account-links li{
        justify-content: center;
    }

    .stm-vm-account-links a{
        min-height: 70px;
        font-size: 0;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stm-vm-account-link-icon{
        margin: 0;
    }

    .stm-vm-account-delete-photo{
        width: 25px;
        height: 25px;
        top: -15px;
        right: 0;
        padding: 2px;
    }

    .stm-vm-account-delete-photo svg{
        width: 15px;
        height: 15px;
    }

    .stm-vm-account-edit-photo label{
        padding: 5px 5px;
        min-width: 80px;
        font-size: 12px;
    }
}

@media screen and (max-width: 1300px) {
    .stm-vm-account-wrapper{
        padding-left: 1em;
        padding-right: 1em;
    }

    .stm-vm-account-profile-photo{
        padding: 0;
    }

    .stm-vm-volunteer-leader{
        font-size: 14px;
        line-height: 1.3;
    }

    .stm-vm-volunteer-leader__full-name{
        display: block;
        margin: 5px 0 0;
    }
}

@media screen and (max-width: 1199px) {
	/*.stm-vm-items-list__wrapper{*/
	/*	min-width: 650px;*/
	/*}*/
    .stm-vm-account-wrapper{
        padding: 1em 0.5em;
        margin-top: 9em;
    }
    .stm-vm-account-right-bar{
        min-width: 140px;
        padding: 0 0 0 20px;
    }
}

@media screen and (max-width: 1024px) {
	.stm-vm-account-links li{
		border-width: 1px;
	}
}

@media screen and (max-width: 991px) {
    .stm-vm-items-list{
        border: none;
    }

    .stm-vm-data-item__th {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    .stm-vm-data-item {
        display: block;
        margin-bottom: 1em;
        border: 1px solid;
    }

    .stm-vm-data-item > * {
        border-bottom: 1px solid;
        display: block;
        font-size: .8em;
        text-align: right;
        width: 100% !important;
        border-right: none;
    }

    .stm-vm-data-item > *::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    .stm-vm-data-item > *:not(.stm-vm-data-item__actions) span{
        margin: 0 0 0 auto;
    }

    .stm-vm-data-item > *:last-child, .stm-vm-data-item__th > *:last-child{
        border-bottom: none;
    }

    .stm-vm-data-item > *:not(.stm-vm-data-item__actions) span{
        min-height: 25px;
    }
}

@media screen and (max-width: 767px) {
    .stm-vm-current-total__wrapper{
        font-size: 18px;
    }

    .stm-vm-form__group{
        flex-direction: column;
    }

    .stm-vm-form__field label{
        font-size: 15px;
    }

    #content .stm-vm-form__submit{
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .stm-vm-account-wrapper{
        flex-wrap: wrap;
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
        position: relative;
    }

    #content{
        overflow: hidden;
    }

    .stm-vm-account-content{
        padding: 0 15px;
    }

    .stm-vm-account-sidebar,
    .stm-vm-account-right-bar{
        position: absolute;
        top: 45px;
        z-index: 5;
        background: #fff;
        width: 80%;
        transition: left .3s ease 0s;
    }

    .stm-vm-account-sidebar{
        left: -100%;
        max-width: 280px;
        flex-basis: 100%;
        box-shadow: 6px -4px 8px rgba(0, 0, 0, 0.1);
        padding-top: 20px;
    }

    .stm-vm-account-right-bar{
        right: -100%;
        bottom: 0;
        margin: 0;
        padding: 20px 0;
        box-shadow: -6px -4px 8px rgba(0, 0, 0, 0.1);
        justify-content: flex-start;
        transition-property: right;
    }

    .stm-vm-account-links a{
        font-size: 15px;
        display: block;
        min-height: auto;
    }

    .stm-vm-account-link-icon{
        margin: 0 10px -5px 0;
    }

    .stm-vm-account-sidebar.show{
        left: 0;
    }

    .stm-vm-account-right-bar.show{
        right: 0;
    }

    .stm-vm-account-header{
        display: flex;
    }

    .stm-vm-account-delete-photo{
        right: 37%;
    }

    .stm-vm-form-search-items label{
        width: 220px;
    }

    .stm-vm-items-list__info--bottom h3,
    .stm-vm-items-list__wrapper h3{
        font-size: 23px;
    }
}