:root {
  --dark-blue:#1d71b8;
}


.md-tooltip.word-bubble{
    background-color: #f0f0f0;
    max-width: 120px;
    white-space: normal;
    color: #777;
    overflow: visible;
    line-height: 1.4;
    font-size: 8px;
    font-family: 'Montserrat';
    padding: 8px 18px;
    border-radius: 5px 5px 5px 0px;
    margin-left: 8px;
    height: auto;
    font-weight: 600;
    opacity: 1;
}
.md-tooltip.word-bubble:after{
    width: 0;
    height: 0;
    border-left: 0px solid transparent;
    border-right: 11px solid transparent;
    border-top: 10px solid #f0f0f0;
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
}
.md-tooltip.md-origin-right.word-bubble:after{
    left: 0 !important;

    border-style: solid !important;
    border-width: 11px 11px 0 0 !important;
    border-color: #f0f0f0 transparent transparent transparent !important;
}
.word-bubble.full-length {
    width: auto;
    max-width: initial;
    transform: translateY(-36px);
    border-radius: 5px 5px 0px 5px;
}
.word-bubble.full-length:after {
    width: 0;
    height: 0;
    border-right: 0px solid transparent;
    border-left: 11px solid transparent;
    border-top: 10px solid #f0f0f0;
    content: "";
    position: absolute;
    right: 0px !important;
    top: 100%;
    left: unset;
}

.md-tooltip.word-bubble.bg-blue {
    background: #1d71b8 !important;
    color: white !important;
}
.md-tooltip.word-bubble.bg-blue:after{
    border-top: 10px solid #1d71b8 !important;
}

.button.outline-button{
	border: 2px solid;
	background: white;
	color: #35bbfe;
}
.button.outline-button:hover{
	background: #fff;
	text-shadow: 0px 0px 1px;
}



.page-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.button.outline-button{
	background: white;
    border: 1px solid #35bbfe;
    color: #35bbfe;
}


.page {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
    position:relative;
    /* justify-content: center; */
}
.page > .content{
    width: 100%;
    display: flex;
    flex: 1;
}
.page > .content > .main{
	display: flex;
	flex-direction: column;
	flex: 1;
	overflow: hidden;
}
.page > .content > .menu-placeholder{
    width: 20%;
    display: flex;
    flex: none;
}

.index{
    display: flex;
    flex: 1;
    flex-direction: column;

    width: 100%;
    padding: 36px;
    box-sizing: border-box;

    position: relative;
}
.index > .loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.index > .filters{
    width: 100%;
    display: flex;
    align-items:center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 10px 0px;
}
.index > .filters > .filter{
    position:
    relative;
}
.index > .filters > .filter > .tag{
    display: flex;
    align-items: center;
    height: 24px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 12px;
    padding: 2px 6px 2px 4px;
    box-sizing: border-box;
    cursor: pointer;
    border-style: dashed;
}
.index > .filters > .filter.active > .tag{
    border-style: solid;
}
.index > .filters > .filter > .tag > md-icon{
    font-size: 15px;
    min-width: 15px;
    width: 15px;
    min-height: 15px;
    height: 15px;
    margin: 0;
    margin-right: 4px;
    transform: rotate(0.03deg);
    color: #aaa;
}
.index > .filters > .filter > .tag > span{
    font-weight: 600;
    font-size: 11px;
    color: #aaa;
}
.index > .filters > .filter.active > .tag > md-icon{
    color: #777
}
.index > .filters > .filter.active > .tag > md-icon.clickable:hover{
    color: #333;
}
.index > .filters > .filter.active > .tag > span{
    color: #777
}
.index > .filters > .filter > .tag:hover {
    background: #fafafa;
}
.index > .filters > .filter > .tag > label{
    font-size: 10px;
    margin-left: 5px;
    font-weight:600;
    color: blue;
    padding-left: 5px;
    border-left: 1px solid #ccc;
    pointer-events: none;
}
.index > .filters > .filter > .tag > label > span > span{
    /* margin-right: 5px; */
}
.index > .header > .pagination {
    margin: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
}
.index > .header > .pagination .md-button {
    margin: 0;
    width: 36px;
    height: 36px;
    border-radius: 5px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.index > .header > .pagination > p {
    width: 100px;
    text-align: center;
    margin: 0;
    line-height: 1;
}
.index > .header > .pagination .md-button md-icon {
    color: #1d71b8;
    font-size: 16px;
}
.index > .filters > .delete-all {
    margin-left: auto;
    display: flex;
    align-items: center;
    height: 24px;
    border-radius: 5px;
    padding: 2px 6px 2px 4px;
    box-sizing: border-box;
    cursor: pointer;
    font-weight: 600;
    font-size: 11px;
    color: #aaa;
    pointer-events: none;
}
.index > .filters > .delete-all md-icon {
    font-size: 16px;
    width: 16px;
    min-width: 16px;
    height: 16px;
    min-height: 16px;
    margin-right: 4px;
    color: inherit;
}
.index > .filters > .delete-all.active {
    color: #777;
    pointer-events: all;
}
.index > .filters > .delete-all.active:hover {
    color: black;
}
.index > .toggle-button {
    width: 16px;
    height: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.index .toggle-button md-icon {
    font-size: 16px;
    min-width: 16px;
    min-height: 16px;
    width: 16px;
    height: 16px;
}


.popover {
    pointer-events: none;
    left: -10px;
    position: absolute;
    background: white;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgb(136 152 170 / 10%), 0 15px 35px 0 rgb(49 49 93 / 10%), 0 5px 15px 0 rgb(0 0 0 / 8%);
    top: 32px;
    padding: 10px;
    transform: scale(.85);
    opacity: 0;
    transition: opacity .25s cubic-bezier(0,1,.4,1),transform .25s cubic-bezier(.18,1.25,.4,1);
    min-width: 250px;
}
.popover.active{
    transform: scale(1);
    opacity: 1;
    pointer-events: all;
}
.popover .title {
    font-size: 14px;
    font-weight: 700;
    padding-bottom: 10px;
}
.popover .checklist {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-right: 32px;
    box-sizing: border-box;
}
.popover .checklist .check {
    display: flex;
    align-items: center;
    height: 20px;
    margin-top: 12px;
    cursor: pointer;
}
.popover .checklist .check {}
.popover .checklist .check input {
    margin: 0;
    margin-right: 10px;
    pointer-events: none;
}
.popover .checklist .check label {
    color: black;
    font-size: 11px;
    font-weight: 500;
    pointer-events: none;
}
.popover .footer {
    padding-top: 20px;
    display: flex;
    width: 100%;
}
.popover .footer .button {
    width: 100%;
    height: 30px;
    font-weight: 500;
}

.popover .input-group {
    display: flex;
    align-items: center;
    padding: 0px 0px 0px 20px;
    margin-top: 20px;
    /* justify-content: flex-end; */
}
.popover select, .popover input[type='date'], .popover input[type='number']{
    font-size: 12px;
    width: 100%;
    /* cursor: pointer; */
    background-color: rgb(255, 255, 255);
    box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 12%) 0px 1px 1px 0px, rgb(64 68 82 / 16%) 0px 0px 0px 1px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(64 68 82 / 8%) 0px 2px 5px 0px;
    border: 0;
    border-radius: 5px;
    height: 24px;
    color: #444;
    font-weight: 600;
    padding: 4px 10px 4px 8px;
    outline: none;
    box-sizing: border-box;
    line-height: 1;
}
.popover input:not(:last-child) {
    margin-right: 10px;
}
.popover select:not(:last-child) {}
.popover input[type='date'] {
    max-width: 110px;
    font-size: 11px;
}
.popover label {
    margin-right: 8px;
    font-weight: 700;
}




.index .header{
    display: flex;
    height: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.action-menu {
    display: flex;
    align-items: center;
    padding: 0px 20px;
}

.action-menu > *:not(:first-child) {
    margin-left: 10px;
}

.index .header .button.button-outline {
    background: white;
    color: #5cc8ff;
    border: 1px solid #5cc8ff;
    box-sizing: border-box;
}
.index .header menu-widget{
	margin-left: 10px;
}
.index .header .button{
	height: 32px;
	padding: 2px 12px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	border-radius: 9px;
}
.index .header .button md-icon{
	font-size: 18px;
	color: inherit;
	width: 18px;
	min-width: 18px;
	height: 18px;
	min-height: 18px;
	margin-left: -4px;
}
.index .header .button span{
	font-size: 12px;
	margin-left: 4px;
	line-height: 1;
	font-family: 'Montserrat';
}
.index .header > .title{
    font-weight: 400;
    line-height: 32px;
    font-size: 18px;
    margin: 0;
}
.index > table{
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.index > table th{
    padding: 10px 4px;
    font-size: 14px;

    font-weight: 500;
    color: black;
}
.index > table th.center {
    text-align: center;
}
.index > table th:first-child{
    padding-left:0px;
}
.index > table th .sortable {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.index > table td {
    padding: 5px 3px 7px 3px;
    border: 0px;
    margin: 0;
    border-spacing: 0px;
    height: 29px;
    box-sizing: border-box;
    width: 100%;
    position: relative;
}
.index > table.bordered th, .index > table.bordered td {
    border: 1px solid lightgray !important;
}
.index > table.padding td {
    padding: 0.75rem !important;
}
.index > table td.small {
    width: 2%;
    max-width: 2%;
}
.index >  table td.center {
    text-align: center;
}
.index > table td > .tag {
    color: rgb(29 113 184);
    border-radius: 4px;
    box-sizing: border-box;
    text-align: center;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ecf6ff;
    float: right;
    margin-right: 6px;
    /* padding: 0px 6px; */
    font-size: 10px;
    cursor: help;
    user-select: none;
    height: 17px;
}
.index > table td > .tag.clickable{
	cursor: pointer;
}
.index > table td > .tag md-icon{
	font-size: 13px;
	height: 17px;
	min-height: 17px;
	width: 17px;
	min-width: 17px;
	color: var(--dark-blue);
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.index > table td > .tag > span {display: inline-flex;align-items: center;height: 15px;}

.index > table td > .tag md-icon+span {
    margin-left: 3px;
}
.index > table td > .tag > span+span {
    box-shadow: -1px 0px 0px 0px rgba(29, 113, 184, 0.5);
    padding-left: 5px;
    margin-left: 5px;
}
.index > table td > .tag md-icon.clickable:last-child {
    box-shadow: -1px 0px 0px 0px rgb(29 113 184 / 20%);
    margin-left: 5px;
}
.index > table tbody tr.overable:hover {
    background-color: #f6f6f6;
}
.index > table tbody tr.clickable { 
    cursor: pointer;
}

.index > table td > .tag > span:first-child {
    padding-left: 8px;
}

.index > table td > .tag > span:last-child {
    padding-right: 8px;
}

.index > table td:first-child > md-icon {
    font-size: 18px;
    transform: rotate(0.03deg);
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
}
.index > table td > .status, .icon-placeholder .status{
    position: absolute;
    background: gray;
    width: 7px;
    height: 7px;
    left: 0px;
    border-radius: 50%;
    box-shadow: 0px 0px 5px 3px rgb(92 200 255 / 31.2%);
}
.icon-placeholder .status {
    top: 0;
}
.index > table td > .status.online, .icon-placeholder .status.online {
    background: #17a30d;
}
.index > table td > .status.busy, .icon-placeholder .status.busy {
    background: #db0a0a;
}
.index > table td > .status.offline, .icon-placeholder .status.offline {
    background: gray;
}
.index > table td > .status.unattached, .icon-placeholder .status.unattached {
    background: white;
    box-shadow: none;
}
.index > table td > .status.unattached:after, .icon-placeholder .status.unattached:after {
    content: 'X';

    position: absolute;
    top: 0;

    font-size: 10px;
    font-weight: bold;

    color: red;
    background: white;
}
.recipients-search-result .icon-placeholder .status.unattached:after {
    position: absolute;
    top: -18px;
    height: 10px;
    width: 10px;
}
.index > table td > .tag.hot {
    color: #b81d1d !important;
    background: #ffecec;
}
.index > table td:first-child{
    padding-left:0px;
}
.index > table tbody.nested{
	background: #f7f7f7;
	border-radius: 10px;
	width: 100%;
	padding-bottom: 10px;
}
.index > table tbody.nested > tr > th{
	font-size: 10px;
}
.index > table tbody.nested > tr > td{
	font-size: 10px;
}
.index > table tbody.nested > tr:last-child td{
	padding-bottom: 15px;
}
.index > table .md-menu > .md-button{
	line-height: 20px;
    height: 20px;
    min-height: 20px;
    padding: 0;
    margin: 0;
}
.index > table .md-button.md-icon-button md-icon, .index > table .md-button.md-icon-button{
	line-height: 15px; height: 15px; min-height: 15px; padding:0; margin:0;
}

.index table.nested {
    border-spacing: 0;
}
.index table.nested td:first-child {
}

/*** PAGO CONFIRMADO ***/

.payment-confirmed {display: flex;flex-direction: column;width: 100%;align-items: center;box-sizing: border-box;padding: 50px;}
.payment-confirmed > .content {
    width: 810px;
    margin: 0 auto;
    max-width: 100%;
    display: flex;
    padding: 72px 0px;
    box-sizing: border-box;
}

.payment-confirmed .message {width: 100%;/* background: #E9EEF1; */border-radius: 15px;padding: 15px;display: flex;min-height: 126px;box-sizing: border-box;}
.payment-confirmed .message  .image {height: 96px;width: auto;flex: none;}
.payment-confirmed .message  .content {flex: 1;display: flex;flex-direction: column;margin-left: 30px;}
.payment-confirmed .message  .content .title {font-size: 24px;font-weight: 800;color: #1d71b8;margin: 0;line-height: 1;}
.payment-confirmed .message  .content .description {margin: 8px 0 0 0;font-size: 18px;color: black;font-weight: 500;padding-bottom: 20px;}


.checkmark__circle{
	stroke-dasharray: 166;
	stroke-dashoffset: 166;
	stroke-width: 2;
	stroke-miterlimit: 10;
	stroke: #7ac142;
	fill: none;
	animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards
}
.checkmark{
	width: 72px;
	height: 72px;
	border-radius: 50%;
	display: block;
	stroke-width: 2;
	stroke: #fff;
	stroke-miterlimit: 10;
	box-shadow: inset 0px 0px 0px #7ac142;
	animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both
}
.checkmark__check{
	transform-origin: 50% 50%;
	stroke-dasharray: 48;
	stroke-dashoffset: 48;
	animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards
}

@keyframes stroke{100%{stroke-dashoffset: 0}}
@keyframes scale{0%, 100%{transform: none} 50%{transform: scale3d(1.1, 1.1, 1)}}
@keyframes fill{100%{box-shadow: inset 0px 0px 0px 50px #7ac142}}






.payment-denied {display: flex;flex-direction: column;width: 100%;align-items: center;box-sizing: border-box;padding: 50px;}
.payment-denied > .content {
    width: 810px;
    margin: 0 auto;
    max-width: 100%;
    display: flex;
    padding: 72px 0px;
    box-sizing: border-box;
}

.payment-denied .message {width: 100%;/* background: #E9EEF1; */border-radius: 15px;padding: 15px;display: flex;min-height: 126px;box-sizing: border-box;}
.payment-denied .message .image {height: 96px;width: auto;flex: none;}
.payment-denied .message .content {flex: 1;display: flex;flex-direction: column;margin-left: 30px;align-items: baseline;}
.payment-denied .message .content .title {font-size: 24px;font-weight: 800;color: #1d71b8;margin: 0;line-height: 1;}
.payment-denied .message .content .description {margin: 8px 0 0 0;font-size: 18px;color: black;font-weight: 500;padding-bottom: 20px;}
.payment-denied .message .content .button{
	flex: none;
	font-weight: 500;
}
.payment-denied .message .content .button md-icon {
    margin-right: 14px;
}




.checkmark_denied{
	width: 72px;
	height: 72px;
	border-radius: 50%;
	display: block;
	stroke-width: 2;
	stroke: #fff;
	stroke-miterlimit: 10;
	box-shadow: inset 0px 0px 0px #d14d4d;
	animation: fill_red .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both
}
.checkmark_denied .checkmark__circle{
	stroke-dasharray: 166;
	stroke-dashoffset: 166;
	stroke-width: 2;
	stroke-miterlimit: 10;
	stroke: #d14d4d;
	fill: none;
	animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards
}
.checkmark_denied .checkmark__check{
	transform-origin: 50% 50%;
	stroke-dasharray: 48;
	stroke-dashoffset: 48;
	animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards
}
@keyframes fill_red{100%{box-shadow: inset 0px 0px 0px 50px #d14d4d}}






.page-header-top-placeholder {
    width: 100%;
}
.page-header-bottom-placeholder {
    width: 100%;

    position: sticky;
    top: 0;
    z-index: 1;
}
.page-header-bottom-placeholder a.close_button{
    position: absolute;
    left: 31px;
    top: 23px;
    color: white;
    z-index: 9999;
}
.page-content-placeholder {
    width: 100%;
    flex: 1;
}
.page-content{
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}
.page-title {
    margin: 12px 0px 6px 0px;
    color: #4479b8;
    font-size: 24px;
}
.page-form {
    display: flex;
    flex-direction: column;
}


.ask-before-leave-placeholder{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.9);
}
.ask-before-leave{
    height:100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.ask-before-leave span{
    font-size: 16px;
    padding-bottom:24px;
    color: black;
}
.ask-before-leave-buttons-placeholder {
    display: flex;
    align-items: center;
}
.ask-before-leave-buttons-placeholder .button {
    height: 32px;
    font-size: 12px;
    margin-left: 12px;
}
.ask-before-leave-buttons-placeholder .button:first-child {
    margin-left: 0px;
}


.loading-page-placeholder {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 999;

    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition:.3s ease-in-out all;
}
.loading-page-placeholder.ng-leave{
    opacity:1;
}
.loading-page-placeholder.ng-leave.ng-leave-active{
    opacity: 0;
}
.loading-page {
    display: flex;
    align-items: center;

    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}
.loading-page .logo {
    max-width: 200px;
    min-width: 100px;
    width: 50%;

    padding-bottom: 50px;
}
.loading-page-image-placeholder {
    height: 215px;
    overflow: hidden;
}
.loading-page-image-placeholder .loading-page-image{
    max-width: 100%;
    max-height: 100%;
}
.loading-page-text {
    line-height: 1.5;
    font-size: 14px;
    margin: 22px 0px;
    text-align: center;
}
.loading-page-content {
    border: 1px solid lightgray;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 24px 24px 32px;
    box-sizing: border-box;
    flex: none;

    width: 350px;
}


.notifications-placeholder {
    position: fixed;
    top: 0px;
    right: 0px;
    /* background: blue; */
    bottom: 0px;
    z-index: 999;
    width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
    box-sizing: border-box;
    pointer-events: none;
}
.notification-snapshot-placeholder .no-page {
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.no-page-text {
    font-size: 13px;
    transform: rotate(-51deg);
    opacity: 0.4;
    font-weight: bolder;
}
.notification-placeholder{
	transition: 0.3s ease-in-out all;
}
.notification.ng-enter {
	opacity:0;
}
.notification.ng-enter.ng-enter-active {
	opacity:1;
}
.notification.ng-leave {
	opacity:1;
}
.notification.ng-leave.ng-leave-active {
	opacity:0;
}
.notification {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    padding: 12px;
    box-sizing: border-box;
    background: #f4f8fd;
    border-radius: 10px;
    border: 2px solid #ddd;
    transition: 0.3s ease-in-out all;
    height: 150px;
}




.notification-placeholder {
    position: relative;
    width: 100%;
    /* height: 150px; */
    box-sizing: border-box;
    pointer-events: all;
    overflow: hidden;
}
.notification-snapshot-placeholder {
    width: 100px;
    display: flex;
    overflow: hidden;
    flex: none;
    align-items: center;
    padding-right: 4px;
    box-sizing: border-box;
}

.notification-snapshot {
    /* width: 100%; */
    height: 100%;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.notification-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-left: 24px;
}
.notification-title {
    color: #000;
    font-size: 16px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.notification-date {
    font-size: 11px;
    color: #8086a4;
    font-weight: 500;
    margin-top: 6px;
}
.notification-text {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.7);
    margin-top: 8px;
    height: 32px;
    overflow: hidden;
}
.notificacion-buttons-placeholder {
    display: flex;
    align-items: center;
    margin-top: auto;
}
.notificacion-buttons-placeholder .button {
    height: 28px;
    font-size: 12px;
    padding: 2px 12px;
}
.notificacion-buttons-placeholder .button+.button {
    margin-left: 4px;
}

.page-header-bottom {
    height: 70px;
    position: relative;
    z-index: 1;
    background: #5cc8ff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-header-bottom.warning {
    background: #ffc845;
    
    margin: 0;
    padding: 0;

    border: none;
}
.page-header-bottom.secondary {
    background: #65C0B6;
}
.nav-menu {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0px 20%;
    box-sizing: border-box;
    height: 100%;
}
.nav-menu-item-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 82px;
    padding: 0px 4px;
}

a.nav-menu-item {
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    padding: 12px 0px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    font-weight: 600;
}
a.nav-menu-item.disabled {
    pointer-events: none;
}
a.nav-menu-item:hover:before,  .nav-menu-item-placeholder.active a.nav-menu-item:before{
    content: '';
    position: absolute;
    left: 3px;
    background: #fff;
    width: 23px;
    height: 13px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transform: rotate(180deg);
    bottom: 0px;
}
.nav-menu:hover .nav-menu-item-placeholder.active a.nav-menu-item::before{
    background: none;
}
.nav-menu .nav-menu-item-placeholder.active a.nav-menu-item:hover:before{
    background: #fff;
}
a.nav-menu-item.done {
    color: #1d71b8;
}
.pade-header-bottom.secondary > a.nav-menu-item.done {
    color: #0a528e;
}
.nav-menu-item-placeholder.published a.nav-menu-item, a.nav-menu-item-placeholder .nav-menu-item .nav-menu-item-icon-placeholder{
    color:#1d71b8;
}
.nav-menu-item-placeholder.active.published a.nav-menu-item, a.nav-menu-item-placeholder.active.published .nav-menu-item .nav-menu-item-icon-placeholder{
    color:rgba(255, 255, 255, 1);
}
a.nav-menu-item:not(.nav-menu-item-placeholder:last-child *):after {
    content: "";
    background-image: linear-gradient(90deg, white 10px, transparent 5px);
    width: 75px;
    height: 2px;
    position: absolute;
    left: 100%;
    background-size: 15px;
    margin-left: 8px;
}
a.nav-menu-item.done:not(.nav-menu-item-placeholder:last-child *):after {
    /*background-image: linear-gradient(90deg, #1d71b8 10px, transparent 5px);*/
    background: #1d71b8;
}
.pade-header-bottom.secondary > a.nav-menu-item.done:not(.nav-menu-item-placeholder:last-child *):after {
    background: #0a528e;
}
.nav-menu-item-placeholder.active a.nav-menu-item {
    /* color: white; */
    /* font-weight: bold; */
}
.nav-menu-item-placeholder:last-child {
    margin-right: 0;
}
.nav-menu-item-icon-placeholder {
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-menu-item-icon-placeholder md-icon {
    color: inherit;
    font-weight: 100;
    font-size: 21px;
    min-width: 21px;
    min-height: 21px;
    width: 21px;
    height: 21px;
}
.nav-menu-item-icon-placeholder.disabled {
    opacity: 0.4;
}


.list {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.list-item {
    display: flex;
    align-items: flex-start;
    /* padding: 10px 0px; */
    min-height: 24px;
    box-sizing: border-box;
    margin-bottom: 4px;
}
.list-item .warning-icon {
    margin: 0 10px 0 0;
    color: orange;
}
.list-item-column.list-item-column-clickable {
    cursor:pointer;
}
.list-item-hoverable:hover {
    background: rgba(0, 0, 0, 0.05);
}
.list-item-column {
    flex: 1;
    padding: 0px 4px;
    min-height: 24px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
.list-item-fixed-column {
    flex: none;
}
.list-item-column-text {
    word-break: break-all;
}
.list-header {
    font-size: 14px;
    padding-bottom: 8px;
    font-weight: 500;
}
.list-item-column:first-child {
    padding-left:0px;
}
.list-item-column:last-child:not(:first-child) {
    /* justify-content: flex-end; */
}
.list-item-menu .md-button {
    line-height: 20px;
    height: 20px;
    min-height: 20px;
    padding: 0;
    margin: 0;
}
.list-item-menu .md-button md-icon {
    color: #1d71b8 !important;
    font-size: 21px !important;
    line-height: 20px;
    min-height: 20px;
    height: 20px;
    min-width: 20px;
    width: 20px;
}
.list-item-column.right{
	justify-content: flex-end;
}

.list.ng-enter {
	position:absolute;
	top:0;
	left:0;
	transition:0.3s linear all 0.3s;
	opacity:0;
	max-height:50px;
	overflow:hidden;
}
.list.ng-enter.ng-enter-active {
	position:relative;
	opacity:1;
	max-height:625px;
}







.documents-list {
    font-size: 12px;
    margin-top: 8px;
    padding-right: 20px;
}
.participants-list {
    background: #ededed;
    padding: 12px 0px;
    border-radius: 12px;
}
.participants-list .list-item.list-header {
    font-size: 10px;
    min-height: 12px;
    padding-bottom: 4px;
}
.participants-list .list-item-column {
    min-height: 12px;
}
.participants-list .list-item {
    min-height: 12px;
    font-size: 10px;
    margin-bottom: 8px;
}
.participants-list .participant-info {
    max-width: 48%;
    width: 100%;

    flex-direction: row;
    display: flex;
    align-items: flex-start;

    padding: 0px 4px;
}





.document-editor-page{
	/* display:flex; */
	/* flex-direction: column; */
	overflow: scroll;
	overflow-x: hidden;
}



.sms-advice {
    width: 250px;
    min-height: 40px;
    margin: 0px auto;
    font-weight: normal;
    text-align: center;
    border-radius: 6px;
    box-sizing: border-box;
    display: flex;
    position: relative;
    padding: 10px;
    color: white;
    font-size: 9px;
    background: #1d71b8;
    text-align: left;
}
.sms-advice:after{
	width: 0;
    height: 0;
    border-left: 0px solid transparent;
    border-right: 11px solid transparent;
    border-top: 10px solid #1d71b8;
    content: "";
    position: absolute;
    left: 20px;
    top: 100%;
}
.sms-advice p {
	margin: 0;
	text-align: left;
}
.sms-advice > p {
    display: flex;
    flex-direction: column;
    margin: 0;
    align-items: center;
}
.sms-advice .button {
    margin-top: 15px;
    height: 20px;
    padding: 4px 10px;
    width: auto;
    font-size: 11px;
}
.sms-advice .sms-advice-buy {
    font-size: 9px;
    color: white;
    padding-top: 10px;
}
.sms-advice .link {
    color: white !important;
    font-weight: bold;
    text-decoration: underline;
}

.document-editor-page .page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.document-editor-page .current-state {
    position: absolute;
    z-index: 99;

    top: 26px;
    left: 75px;

    font-weight: 500;
    font-size: 14px;

    color: #333;
}
.document-configuration {
    width: 500px;
    padding: 32px 0px 24px 0px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.document-configuration .title {
    font-size: 16px;
    color: black;
    font-weight: normal;
    padding-left: 15px;
}
.document-configuration .document-template-selector {
    font-size: 12px;
    color: #5cc8ff;
    font-weight: 500;

    cursor: pointer;
}


.document-configuration .title:not(:first-child) {
    margin-top: 32px;
}
.document-upload-box {
    display: flex;
    align-items: center;
    outline: none;
    width: 100%;
    position: relative;
    border-radius: 20px;
    border: 1px solid lightgray;
    cursor: pointer;
    margin-top: 16px;
    flex-direction: column;
    height: 400px;
    /*overflow: hidden;*/
}
.document-upload-box.disabled {
}
.document-upload-toolbar {
    width: 100%;
    padding: 0px 24px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    margin-top: 32px;
}
.document-upload-toolbar .icon-button{
    position:relative;
}
a.button {
    height: 44px;
    background: #5cc8ff;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 400;
    white-space: nowrap;
    vertical-align: middle;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    box-sizing: border-box;
    text-align: center;
    justify-content: center;
    text-decoration: none;
}
a.button.button-sm{
	padding: 0px;
	height: 20px;
	font-size: 11px;
}
.button-icon {
    color: inherit;
    width: 24px;
    height: 24px;
}
.button-text {
    color: inherit;
}
.button-icon+.button-text {
    margin-left: 8px;
}
.button.icon-button img {
    width: 100%;
    height: 100%;
}
.button.icon-button {
    padding: 0px;
    width: 44px;
}
.button:hover {
    background: #35bbfe;
    text-shadow: 0px 0px 1px;
}
.button.disabled {
    opacity: 0.3;
    pointer-events: none;
}



.document-upload {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.document-upload-toolbar .button {
    margin-right: 4px;
}
.document-drop-container {
    width: 100%;
    padding: 0px 24px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    flex-direction: column;
    position: relative;
    margin-top: 32px;
    height: 100%;
    flex: 1;
}
.document-drop-container.highlighted .drop-container-image-placeholder {
    border: 4px dashed #5cc8ff;
}
.document-progress-bar-placeholder {
    position: absolute;
    bottom: 12px;
    width: 100%;
    padding: 0px 32px;
    box-sizing: border-box;
}
.drop-container-image-placeholder {
    position: relative;
    border: 2px dashed #d3d3d3;
    border-radius: 4px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    pointer-events: none;
}
.drop-container-image-placeholder img {
    width: 72px;
}
.drop-container-title {
    position: absolute;
    background: white;
    top: -7px;
    z-index: 1;
    padding: 0px 12px;
}
.document-upload-tips {
    margin: 12px 0px 32px 0px;
    color: #777;
    font-size: 10px;
    width: 100%;
    padding: 0px 24px;
    box-sizing: border-box;
}
.document-configuration-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 32px;
    box-sizing: border-box;
    flex: 1;
}
.document-snapshot-placeholder {
    width: 170px;
    height: 220px;
    position: relative;
    border: 1px solid #ccc;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
.document-snapshot {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 0;
}
.document-snapshot-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
    display: none;
}
.document-preview-button {
    position: relative;
    z-index: 1;
    background: white;
    padding: 8px 12px;
    display: none;
}
.document-preview-button:hover {
    background: #1d71b8;
    color: white;
}
.document-snapshot-placeholder:hover .document-delete-button-placeholder {
    display: flex;
}
.document-delete-button-placeholder {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 48px;
    height: 48px;
    z-index: 1;
    display: none;
    align-items: center;
    justify-content: center;
}
.document-delete-button {
    width: 24px;
    height: 24px;
    z-index: 1;
    background: white;
    border-radius: 50%;
    display: none;
}
.document-snapshot-placeholder:hover .document-preview-button {
    display: initial;
}
.document-snapshot-placeholder:hover .document-delete-button {
    display: initial;
}
.document-snapshot-placeholder:hover .document-snapshot-backdrop {
    display: initial;
}
.document-progress-bar-placeholder .progress-bar-text {
    color: #1d71b8;
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    width: 100%;
}
.document-progress-bar-placeholder md-progress-linear {
    margin-top: 4px;
}
.document-progress-bar-placeholder md-progress-linear .md-container {
    background-color: #5cc8ff;
}
.document-configuration-inputs-placeholder {
    width: 170px;
    display: flex;
    flex-direction: column;
    margin-top: 12px;
}
.document-configuration-inputs-placeholder md-input-container {
    margin: 8px 0px;
}
.new-document-type {
    width: 100%;
    display: flex;
    height: 48px;
    box-sizing: border-box;
    position: sticky;
    background: white;
    z-index: 1;
    bottom: 0px;
    border-top: 1px solid #ccc;
}
.new-document-type-button:hover {
    background: rgba(0, 0, 0, 0.05);
}
.new-document-type-button{
    width: 100%;
    display: flex;
    align-items: center;
    height: 48px;
    padding: 0px 16px;
    box-sizing: border-box;
    color: #1d71b8;
}
.document-type-label {
    width: 100%;
    /* height: 36px; */
    padding: 16px 16px 12px 16px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    color: #777;
    font-size: 12px;
}
.document-toolbar-placeholder {
    position: sticky;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0px;
    right: 17px;
    width: 100%;
    height: 52px;
    background: white;
    box-sizing: border-box;
    /* margin-top: 10px; */
    border-top: 1px solid #ddd;
    margin-bottom: auto;
}
.document-toolbar-placeholder.at-bottom {
    border-color: white;
}
.document-toolbar {
    display: flex;
    align-items: center;
    width: 800px;
    justify-content: flex-end;
    align-items: flex-end;
    box-sizing: border-box;
}
.signature-complete-message-placeholder {
    width: 100%;
    height: 24px;

    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;

    position: sticky;
    top: 70px;
    z-index: 1;

    background: #ffc845;
    border-top: 1px solid white;
}
.signature-complete-message {
    position: absolute;
    bottom: 8px;
    right: 24px;

    color: black;
    font-weight: 500;
    font-size: 11px;
}
.signature-incomplete-message-placeholder {
    width: 100%;
    height: 24px;

    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;

    position: sticky;
    top: 70px;
    z-index: 1;

    background: #ffc845;
    border-top: 1px solid white;
}
.signature-incomplete-message {
    position: absolute;
    bottom: 8px;
    right: 24px;

    color: black;
    font-weight: 500;
    font-size: 11px;
}
.recipients-configuration-placeholder {
    display: flex;
    justify-content: center;
}
.document-configuration+.document-toolbar-placeholder .document-toolbar {
    width: 500px;
}
.recipients-configuration-placeholder+*+.document-toolbar-placeholder .document-toolbar{
	width: 800px;
    padding: 0px 24px;
}
.place-signatures+.document-toolbar-placeholder {
    justify-content: left;
    padding-left: 300px;
}
.place-signatures+.document-toolbar-placeholder .document-toolbar {
    width: calc(100% - 200px);
    padding: 0px 34px 0px 12px;
}
.send-document-form+.document-toolbar-placeholder .document-toolbar {
    width: 800px;
}

.document-toolbar > div[class$=placeholder] {
    width: 129px;
}
.document-toolbar .button {
    margin-left: 4px;
    flex: 1;
    height: 35px;
    width: 125px;
    max-width: 125px;
    font-size: 12px;
}
.document-toolbar .save-button-placeholder {
    margin-right: 44px;
}
.document-toolbar .button.save-button {
    margin-right: auto;
}
.document-toolbar .button.send-button {/* background: #F8C95F; *//* color: #093458; */font-weight: 500;/* background: #35bbfe; */color: white;}
.document-toolbar .button.send-button:hover {
    /*
	background: #f3bb3d;
    background: #1387c1;
    border-color: #1387c1;
	*/
}
.document-toolbar .button.next-button {/* background: #F8C95F; *//* color: #093458; */}
.document-toolbar .button.prev-button {
}
.button-tooltip-placeholder, .icon-tooltip-placeholder {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 316px;
    height: 100%;
}
.document-toolbar .next-button-placeholder {
    position: relative;
}
.document-toolbar .save-button-placeholder {
    position: relative;
}
.document-toolbar .send-button-placeholder {
    position: relative;
}


.place-signatures {
    width: 100%;
    height: calc(100vh - 193px);
    display: flex;
    overflow: hidden;
    border-bottom: 1px solid #ddd;
}
.place-signatures .drag-signers-menu {
    width: 300px;
    height: 100%;
    padding: 32px;
    box-sizing: border-box;
    background: #F6F6F6;
    overflow: auto;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #ccc;
    flex: none;
    overflow-x: hidden;
}
.place-signatures .drag-signers-menu .title {
    font-size: 12px;
    line-height: 20px;
    color: rgba(0,0,0,0.87);
    width: 240px;
}
.place-signatures .blocks-list {
    display: flex;
    flex-direction: column;
    width: 240px;
    margin-top: 8px;
    padding-right: 14px;
    box-sizing: border-box;
}
.place-signatures .drag-signers-menu .block {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 12px;
}
.place-signatures .drag-signers-menu .block .block-title {
    font-size: 10px;
    line-height: 20px;
    padding: 0px;
    color: rgba(0, 0, 0, 0.87);
}
.place-signatures .signers-list {
    margin-top: 0px;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.place-signatures .signer-placeholder {
    width: 100%;
    display: flex;
    position: relative;
    border: 1px solid #ccc;
    /* border-radius: 4px; */
}
.place-signatures .signer-placeholder .fold-button{
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
}
.place-signatures .signer-placeholder .fold-icon{
	
}
.place-signatures .signer {
    width: 100%;
    display: flex;
    cursor: pointer;
    align-items: center;
    padding: 8px 8px 8px 0px;
    border-radius: 4px;
    box-sizing: border-box;
}
.place-signatures .signer.draggable {
    cursor: move;
}
.place-signatures md-icon.signer-icon {
    margin: 0;
    font-size: 24px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    margin-right: 12px;
}
.place-signatures .signer-name {
    font-size: 8px;
    text-transform: uppercase;
    padding-right: 32px;
    box-sizing: border-box;
    flex: 1;
    margin: 0;
}


.draggable .drag-helper{
	display: none;
}


.pdf-viewer {
    flex: 1;
    display: flex;
    overflow: auto;
    flex-direction: column;
}
.pdf-page-placeholder {
    /*box-shadow: 0 4px 5px -2px rgb(0 0 0 / 20%), 0 7px 10px 1px rgb(0 0 0 / 14%), 0 2px 16px 1px rgb(0 0 0 / 12%);*/

    border: 1px solid lightgray;
    
    margin: 16px;

    /* width: 100%; */
    /* overflow: hidden; */
    /* flex: 1; */

    position: relative;
}
@media( min-width: 1080px ){
    .pdf-page-placeholder {
        margin: 2% calc(20% - 5vw)
    }    
}
@media( min-width: 1920px ){
    .pdf-page-placeholder {
        margin: 2% calc(20% - 2vw);
    }
}
.pdf-page {
    width: 100%;
    user-select: none;
}

.pdf-pages-summary {
    width: 225px;
    border-left: 1px solid #ccc;
    background: #ffffff;
    overflow: scroll;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    overflow-x: hidden;
}
.page-thumb {
    margin: 12px;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 20%), 0 1px 1px 0 rgb(0 0 0 / 14%), 0 2px 1px -1px rgb(0 0 0 / 12%);
    position: relative;
    display: flex;
    cursor: pointer;
}
.page-thumb img {
    width: 100%;
    height: auto;
}
.page-thumb.selected {
	outline: 2px solid #2983be;
}
.page-thumb .page-number {
    position: absolute;
    bottom: 4px;
    left: 8px;
    font-size: 10px;
    color: black;
}
.page-thumb .markers-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.page-thumb .marker {
    width: 28px;
    height: 12px;
    position: relative;
    left: -8px;
    margin: 5px 0px;
    display: flex;
    filter: drop-shadow(0px 1px 1px);
}
.page-thumb .marker span:first-child {
    flex: 1;
    z-index: 1;
}
.page-thumb .marker span:last-child {
    width: 8px;
    height: 8px;
    transform: rotate(45deg) translate(-1px, 4px);
}


.place-signatures .signer.selected {
	/* background: #e2f4ff; */
}


.signer-placeholder .marker {
    width: 28px;
    height: 12px;
    position: absolute;
    z-index: 1;
    right: -8px;
    top: 50%;
    margin-top: -6px;
    display: flex;
    filter: drop-shadow(0px 1px 1px);
}
.signer-placeholder .marker span:first-child {
    flex: 1;
    z-index: 1;
}
.signer-placeholder .marker span:last-child {
    width: 8px;
    height: 8px;
    transform: rotate(45deg) translate(-1px, 4px);
}


.signer-field-placeholder .marker {
    width: 24px;
    height: 9px;
    position: absolute;
    z-index: 1;
    right: -10px;
    top: 50%;
    margin-top: -5px;
    display: flex;
    filter: drop-shadow(0px 1px 1px);
}
.signer-field-placeholder .marker span:first-child {
    flex: 1;
    z-index: 1;
}
.signer-field-placeholder .marker span:last-child {
    width: 6.3px;
    height: 6.4px;
    transform: rotate(45deg) translate(-1px, 3px);
}


.signer-fields-placeholder {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 4px 32px 0px 12px;
    box-sizing: border-box;
}

.signer-fields-list {
    display: flex;
    flex-direction: column;
}
.signer-field-placeholder {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 4px;
    height: 24px;
    position: relative;
}
.signer-field {
    border: 1px solid #ccc;
    /*border-radius: 4px;*/
    width: 100%;
    height: 24px;
    display: flex;
    align-items: center;
    padding: 0px 12px;
    box-sizing: border-box;
    cursor: move;
}
.signer-field .tag-text {
    font-size: 9px;
    flex: 1;
}
md-icon.tag-icon {
    font-size: 16px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    color: black;
}
md-icon.tag-icon:not(:last-child){
	margin-right:4px;
}
md-icon.tag-icon+span {
    margin-left: 8px;
}


.indicador_firma {
    display: flex;
    flex-direction: column;
    align-items: center;

    position: absolute;
    z-index: 10;

    box-sizing: border-box;
    background: white;
    cursor: move;
    
    justify-content: center;
}
.indicador_firma.con_pespunte:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 95%;
    top: -2%;
    left: 0;
    background: url(../images/pespunte_con_x_gris.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
}
.indicador_firma p {
    font-size: inherit;
    color: black;
    width: 100%;
    text-align: center;
    justify-content: center;
    margin: 0;
}
.indicador_firma img {
    flex: 0 0 auto;
    overflow: hidden;
    width: 24%;
    pointer-events: none;
    margin-top: 5%;
}
.indicador_firma .pespunte img {
    margin: 0;
    width: 100%;
    height: 100%;
}


.indicador_firma[ng-rotatable]{
    transform-origin: center center;
}
.indicador_firma .ui-rotatable-handle {
    position: absolute;
    top: -24px;
    background: none;
    left: 50%;
    transform: translateX(-50%);
}
.ui-rotatable-handle:before {
    content: "\21BB";
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    padding-top: 3px;
    transform: rotateZ(1deg);
}
.indicador_firma .ui-rotatable-handle:after {
    content: "";

    width: 1px;
    height: 8px;

    background: gray;

    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);

    z-index: 0;
}


.indicador_campo {
    display: flex;
    flex-direction: row;
    align-items: center;

    position: absolute;
    z-index: 10;
    transform: translate(-50%,-50%);

    /* box-sizing: border-box; */
    background: white;
    cursor: move;

    white-space: nowrap;
    text-align: left;
}
.indicador_campo.textarea {
    /* word-break: break-all; */
    word-break: break-word;
    white-space: normal;
    align-items: flex-start;
}

.indicador_firma .delete_signature, .indicador_campo .delete_field{
    position: absolute;
    transform: scale(0.5);
    background: black;
    top: -5px;
    right: -5px;
    transform-origin: top right;
    margin: 0;
    display:none;

    width: 28px !important;
    min-width: 28px !important;
    height: 28px !important;
    min-height: 28px !important;
    line-height: 28px !important;

    padding: 0;
    margin: 0;
}
.indicador_firma .delete_signature md-icon, .indicador_campo .delete_field md-icon{
    color:#FFF;
    display: none;

    font-size: 20px;
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;

}
.indicador_firma:hover .delete_signature, .indicador_campo:hover .delete_field{
    display:initial;
}
.indicador_firma:hover .delete_signature md-icon, .indicador_campo:hover .delete_field md-icon{
    display:block;
}
/*.indicador_campo.selected .delete_field{
    display: none;
}*/


.resize-mask {
    position: absolute;
    top: 0px !important;
    left: 0px !important;
    width: 100%;
    height: 100%;
    outline: 2px solid #1d71b8;
    box-sizing: border-box;
    display: none;
    border-radius: inherit;
}
.indicador_campo.selected .resize-mask, .indicador_firma.selected .resize-mask {
    display: initial;
}
.indicador_campo.ng-invalid .resize-mask {
    border-color: red;
    display: initial;
    background: #ffbcbc;
}
.indicador_campo.ng-invalid:not(.selected) .ui-resizable-handle {
    display: none;
}
.indicador_campo .ui-resizable-handle, .indicador_firma .ui-resizable-handle {
    background: white;
    border: 1px solid;
    border-radius: 50%;

    width: 5px;
    height: 5px;
}
.indicador_campo .ui-resizable-handle.se-handle, .indicador_firma .ui-resizable-handle.se-handle {
    bottom: -5px;
    right: -5px;
}
.indicador_campo .ui-resizable-handle.e-handle{
    transform: translateY(-50%);
    top: 50%;
}
.indicador_campo .ui-resizable-handle.w-handle{    
    transform: translateY(-50%);
    top: 50%;
}
.indicador_campo textarea{
    border: 0;
    background: transparent;
    width: auto;
    cursor: text;
    outline: none;
    width: 100%;
    text-align: left;
    pointer-events: none;
    display: flex;
    resize: none;
    vertical-align:middle;
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    font-family: inherit;
    padding: 0;
    height: 100%;
    font-size: inherit;
    position: relative;
    z-index: 2;
}
.indicador_campo.selected textarea {
    pointer-events: initial;
}
.indicador_campo.selected {
    outline: 2px solid #1d71b8; 
    /*box-sizing: border-box;*/
    border-radius: inherit;
}
.indicador_campo .tag-name {
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;

    white-space: nowrap;
}

.pdf-tag-config-placeholder {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 200px;
    border-left: 1px solid #ccc;
    background: #eee;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    padding: 24px 12px;
    bottom: 53px;
}
.pdf-tag-config-placeholder .field-title {
    padding-bottom: 16px;
    font-size: 11px;
    font-weight: 500;
}
.pdf-tag-config-placeholder .input-container {
    display: flex;
    padding-bottom: 8px;
    flex-wrap: wrap;
    overflow: hidden;
}
.pdf-tag-config-placeholder .input-container label {
    font-size: 9px;
    padding: 2px 4px;
    font-weight: 600;
    flex: 1;
    display: flex;
    align-items: center;
}
.pdf-tag-config-placeholder .input-container input[type='text'] {
    font-size: 10px;
    height: 23px;
    padding: 2px 4px;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 100%;
}
.pdf-tag-config-placeholder .input-container input[type='number'] {
    font-size: 10px;
    height: 23px;
    padding: 2px 4px;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 100%;
    max-width: 140px;
    margin-right: 50px;
}
.pdf-tag-config-placeholder .input-container input[type='checkbox'] {
    cursor: pointer;
}
.pdf-tag-config-placeholder .input-container input[type='checkbox']+label {
    cursor: pointer;
}
.pdf-tag-config-placeholder .font-container-selector {
    padding-top: 8px;
}
.pdf-tag-config-placeholder .font-container-selector select {
    min-width: 45px;
    height: 23px;
    padding: 2px 4px;

    border: 1px solid #ccc;
    border-radius: 3px;
    background: white;
}
.pdf-tag-config-placeholder .font-container-selector md-icon {
    font-size: 18px;
    min-height: 18px;
    height: 18px;

    margin: 0;
}
.pdf-tag-config-placeholder .font-container-selector .md-button.md-icon-button {
    margin: 0;
    margin-right: 2px;

    padding: 0;

    width: 25px;
    min-height: 20px;
    max-height: 20px;
}
.pdf-tag-config-placeholder .font-container-selector .md-button.md-icon-button.selected {
    border: 1px solid;
    border-radius: 2px;
    border-color: #1d71b8;
}
.pdf-tag-config-placeholder .font-container-selector .md-button.md-icon-button.selected md-icon {
    color: #1d71b8;
}
.pdf-tag-config-placeholder .input-container.max-field-length-tag {
    flex-direction: row;
}
.pdf-tag-config-placeholder .input-container.max-field-length-tag input[type='number'] {
    width: 65px;
    margin-right: 26px;
    text-align: center;

    -moz-appearance: textfield;
}
.pdf-tag-config-placeholder .input-container.max-field-length-tag input[type='number']::-webkit-outer-spin-button,
.pdf-tag-config-placeholder .input-container.max-field-length-tag input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
}


.signer-form-fields-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 12px;
}
.signer-form-fields-list .headline {
    font-weight: 600;
    font-size: 10px;
    width: 100%;
    padding-bottom: 4px;
}
.signer-form-field-placeholder {
    margin-right: 8px;
    width: 24px;
    height: 24px;
    position: relative;
}
.signer-form-field-placeholder .badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    border-radius: 50px;
    width: 12px;
    height: 12px;
    font-size: 9px;
    color: white;
    text-align: center;
    font-weight: 600;
}
.signer-form-field {
    border-radius: 4px;
    box-shadow: 0px 0px 2px inset rgb(0 0 0 / 30%);
    margin-right: 8px;
    width: 24px;
    height: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e5e5e5+0,ffffff+49 */
     /* Old browsers */
     /* FF3.6-15 */
     /* Chrome10-25,Safari5.1-6 */
     /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
     /* IE6-9 fallback on horizontal gradient */
    background: #fafafa;
    cursor: move;
}
.form-field-icon-placeholder {
    /* width: 100%; */
    /* height: 100%; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}
.form-field-icon-placeholder md-icon {
    font-size: 16px;
    width: 16px;
    min-width: 16px;
    height: 16px;
    min-height: 16px;
}



.send-document-form {
    width: 800px;
    display: flex;
    flex-direction: column;
    padding: 32px 0px 24px 0px;
}
.send-document-form .form-block {
    border: 1px solid #cacaca;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    margin-top: 24px;
}
.send-document-form .form-block:first-child {
    margin-top: 0px;
}
.send-document-form .form-block > .title{
	width: 100%;
	box-sizing: border-box;
	padding: 0 15px 10px;
}
.send-document-form .data-block {
    display: flex;
    padding: 0px 12px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 12px;
}
.send-document-form .data-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.send-document-form .data-block .title {
    font-weight: 600;
    color: black;
}
.send-document-form .data-block .label {
    font-size: 11px;
    /* color: #777; */
    margin-top: 4px;
}
.send-document-form .data-block:last-child {
    margin-bottom: 12px;
}
.send-document-form .data-block .input-placeholder {
    margin-top: 8px;
    width: 100%;
    display: flex;
}
.send-document-form .data-block .input-placeholder textarea {
    min-height: 72px;
    font-size: 10px;
    padding: 2px 8px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #ccc;
    resize: vertical;
    outline-color: #5cc8ff;
}
.send-document-form .data-block .recipients-list {}
.send-document-form .block-group {
    display: flex;
    flex-direction: row;
}
.send-document-form .recipients-list {
    background: none;
    padding: 0px;
    margin-top: 4px;
}
.send-document-form .signers-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-right: 1px solid #ccc;
    border-radius: 4px;
}
.send-document-form .signer {
    width: 100%;
    display: flex;
    align-items: flex-start;
}
.send-document-form .signer-data {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0PX 24px;
    position: relative;
}
.send-document-form .signer-type {
    display: flex;
    align-items: center;
    height: 24px;
    font-size: 10px;
}
.send-document-form .signer-id {
    height: 24px;
    display: flex;
    align-items: center;
    font-size: 10px;
}
.send-document-form .signer-menu-placeholder {
    display: flex;
    height: 24px;
    align-items: center;
    justify-content: center;
    padding: 0px 12px;
}
.send-document-form .signer-menu .md-icon-button {
    padding: 0px;
    margin: 0;
    width: 24px;
    height: 24px;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.send-document-form .schedule-configuration {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 8px;
}
.send-document-form .schedule-configuration .checkbox-placeholder {
    width: 100%;
    height: 24px;
    display: flex;
    align-items: center;
}
.send-document-form .schedule-configuration .checkbox-placeholder md-checkbox {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
}
.send-document-form .schedule-configuration .checkbox-placeholder md-checkbox .md-label {
    margin-left: 24px;
    line-height: 1;
}
.send-document-form .reminders-configuration {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 8px;
}
.send-document-form .reminders-configuration .checkbox-placeholder {
    width: 100%;
    height: 24px;
    display: flex;
    align-items: center;
}
.send-document-form .reminders-configuration .checkbox-placeholder md-checkbox {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
}
.send-document-form .reminders-configuration .checkbox-placeholder md-checkbox .md-label {
    margin-left: 24px;
    line-height: 1;
}
.send-document-form .document-template-configuration .divider {
    width: 100%;
    display: block;

    padding-bottom: 8px;

    margin-top: 12px;
    margin-bottom: 12px;

    border-top: 2px solid lightgray;
}
.send-document-form .document-template-configuration .secondary-title { 
    font-size: 12px;
}
.send-document-form .document-template-configuration .secondary-text {
    font-size: 11px;
    padding-top: 2.5px;
}
.send-document-form .schedule-configuration .input-group {
    padding-left: 25px;
}
.send-document-form .schedule-configuration .input-group input {
    width: auto;
    font-size: 11px;
}
.send-document-form .schedule-configuration .input-group input[type='date'], 
.send-document-form .schedule-configuration .input-group input[type='time'] 
{
    width: 100px;
}
.send-document-form .schedule-configuration .input-group input[type='time']{
	text-align: center;
}
.send-document-form .input-group {
    display: flex;
    align-items: center;
    margin-top: 8px;
}
.send-document-form .input-group .label {
    margin-top: 0px;
    width: 250px;
}
.send-document-form .input-group input {
	border: 1px solid #ccc;
	width: 52px;
	outline-color: #5cc8ff;
	border-color: #ccc;
	/* resize: vertical; */
	outline-color: #5cc8ff;
	border-radius: 4px;
	height: 23px;
	padding-left: 8px;
	margin-right: 8px;
}
.send-document-form .input-group input.ng-invalid.ng-touched:not(:focus) {
    color: red;
    background: #ffe0e0;
    text-decoration: line-through;
    border-color: red;
}
.send-document-form .input-group input[type='number']::-webkit-outer-spin-button, .send-document-form .input-group input[type='number']::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.send-document-form .input-group input[type='number'] {
    -moz-appearance: textfield;
}
.send-document-form .schedule-configuration .input-group {
    padding-left: 24px;
}
.send-document-form .reminders-configuration .input-group {
    padding-left: 24px;
}
.send-document-form .block-group-order {
    margin: 0px;
    width: 44px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.send-document-form .reminders-configuration .input-group md-select {
    margin: 0;
}
.send-document-form .block-group:not(:first-child) {
    margin-top: 12px;
}
.send-document-form .private-message-placeholder {
    margin-top: 2px;
    padding-left: 4px;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    margin: 0px 0px 12px 0px;
    border-radius: 0px 12px 12px 0px;
    border-bottom: 1px solid #ccc;
    background: #fafafa;
    padding: 16px;
    margin-left: -12px;
}
.send-document-form .private-message {
    min-height: 52px;
    font-size: 10px;
    padding: 4px;
    width: 370px;
    box-sizing: border-box;
    margin-top: 4px;
    border: 1px solid #ccc;
    resize: vertical;
    outline-color: #5cc8ff;
	border-radius: 4px;
    background: white;
}
.send-document-form .private-message-title {
    font-size: 10px;
    /* color: #1d71b8; */
}
.send-document-form .private-message:focus {
    /* box-shadow: 1px 1px 3px inset rgb(0 0 0 / 30%); */
}
.send-document-form .data-block .input-placeholder textarea:focus, .send-document-form .private-message:focus {
    border: 1px solid #5cc8ff;
    /* border:none; */
}
.send-document-form .signer-data:before {
	content: "";
	width: 9px;
	height: 9px;
	position: absolute;
	border-radius: 50%;
	background: #ccc;
	left: 8px;
	top: 8px;
	text-align: center;
	font-size: 8px;
	font-weight: bold;
	line-height: 12px;
}
.send-document-form .signer-data:after {
    content: "";
    position: absolute;
    top: 12px;
    width: 1px;
    background: #ccc;
    left: 12px;
    bottom: 13px;
}
.send-document-form .recipient-identity-configuration {
    margin-left: -12px;
}
.send-document-form .block {
    width: 100%;
    display: flex;
    flex-direction: column;
}


md-menu-item.signer-menu-item {
    height: 32px;
    min-height: 32px;
}
md-menu-item.signer-menu-item > .md-button {
    font-size: 11px;
    height: 32px;
    min-height: 32px;
    line-height: 32px;
    margin: 0;
}



.action-completed-page-placeholder {
    display: flex;
    align-items: center;

    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}
.action-completed-page-placeholder .logo {
    max-width: 200px;
    min-width: 100px;
    width: 50%;

    padding-bottom: 35px;
}
.action-completed-message {
    border: 1px solid lightgray;
    border-radius: 8px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: relative;
    
    padding: 24px 24px 24px 32px;
    box-sizing: border-box;
    flex: none;

    width: 95%;
    max-width: 450px;
}
.action-completed-message .title {
    color: #02507e;
    font-size: 24px;
    margin: 32px 0px;
}
.action-completed-message .message-picture {
    width: 185px;
}
.action-completed-message .message-picture img {
    width: 100%;
}
.action-completed-message .buttons-placeholder {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    margin-top: 24px;
}
.action-completed-message .message-text {
    line-height: 1.5;
    font-size: 14px;
    margin: 22px 0px;
    text-align: center;
}








md-checkbox.checkbox-mini {line-height: 13px;height: 13px;min-height: 13px;padding:0;transform: scale(0.9);display: flex;align-items: center;justify-content: center;transform-origin: top center;}
md-checkbox.checkbox-mini .md-container {
    /* margin: 0 !important; */
    /* top: 0; */
    /* overflow: hidden; */
    margin: 0;
    transform: none;
    height: 13px;
}
md-checkbox.checkbox-mini .md-icon{}


.link, .link:visited, .link:focus {
    color: #4479b8;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
}
.link.underline {
    text-decoration: underline;;
}
.label+.link {
    text-align: right;
}
.label input {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px;
    background: #fff;
    border: 1px solid #aaa;
    width: 100%;
    box-sizing: border-box;
    padding: 5px;
}

.label md-input-container {
    margin: 0;
    padding-bottom: 8px;
}

.label md-input-container input:focus, .label md-input-container.md-input-focused .md-input {
    border: 1px solid #aaa;
    padding: 5px;
}

.label md-input-container .md-input:invalid{
    border: 1px solid rgb(221,44,0);
    padding: 5px;   
}

.label md-input-container.md-input-invalid .md-input-message-animation{
    font-size: 10px;
}

.buttons-placeholder {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 32px;
	width: 100%;
}

.input-placeholder {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}
.input-placeholder input {
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 44px;
    margin-top: 12px;
    font-size: 14px;
    width: 100%;
    padding: 0px 12px;
    box-sizing: border-box;
}
.input-placeholder label {
    position: absolute;
    top: 6px;
    background: white;
    padding: 0px 10px 0px 8px;
    left: 4px;
    font-size: 10px;
    color: #aaa;
}
.error-message-placeholder {
    width: 100%;
    margin: 12px 0px;
    padding: 0px 10px;
    box-sizing: border-box;
}
.error-message {
    color: #e00b0b;
}


.page.cookies-page {
    width: 420px;
    display: flex;
    flex-direction: column;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 32px 32px 52px 32px;
    box-sizing: border-box;
}
.cookies-page .logo-placeholder {
    padding: 0;
}
.cookies-page .logo-placeholder .logo {
    padding-bottom: 0;
}
.cookies-page .title {
    margin-top: 32px;
}
.cookies-page .text {
    margin-top: 24px;
}
.cookies-page .button {
    margin-top: 48px;
}
.cookies-page .input-placeholder {
    flex-direction: row;
    overflow: hidden;
}
.cookies-page .input-placeholder .icon-button {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cookies-page .title {
    font-size: 20px;
    font-weight: bold;
    color: #005dab;
}
.cookies-page .text {
    font-size: 14px;
    color: #005dab;
}
.cookies-page .instructions .text {
    font-size: 10px;
    color: #777;
}


.logo-placeholder {
    text-align: center;
    width: 100%;
}
.logo-placeholder .logo {
    max-width: 200px;
    min-width: 100px;
    width: 50%;

    padding-bottom: 35px;
}
.logo {
    max-width: 200px;
    min-width: 100px;
    width: 50%;
}
.copyright {
    color: #c6c6c6;
    padding: 12px 0px;
    margin-top: 32px;
}
.accordion {
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}
.accordion-item.open {
    min-height: 625px;
    max-height: 625px;

    max-width: 450px;
}
.accordion-item {
    max-height: 56px;
    overflow: hidden;
    transition: 0.3s ease-in-out all;
}
.accordion-item-headline {
    height: 56px;
    display: flex;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}
.accordion-item-dropdown-icon-placeholder {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accordion-item-title {
    height: 56px;
    display: flex;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    font-weight: bold;
    flex: 1;
}
.accordion-item-content .buttons-placeholder {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    margin-top: 32px;

    position: absolute;
    bottom: 32px;
    right: 32px;
}
.accordion-item-content {
    width: 100%;
    height: 100%;

    position: relative;
    display: flex;
    flex-direction: column;

    padding: 32px;
    box-sizing: border-box;
}
.accordion-item-content .title {
    font-size: 24px;
    color: #264a99;
    padding-bottom: 12px;
}
.accordion-item-content .image-placeholder {
    height: 300px;
    overflow: hidden;
}
.accordion-item-content .image {
    max-width: 100%;
    max-height: 100%;
}
.accordion-item-content .text {
    line-height: 1.5;
    font-size: 14px;
    margin: 22px 0px;
}



.challenge-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    max-width: 100%;
    font-weight: 500;
}







.pointer {
    cursor: pointer;
}

.toast-container {
    position: absolute;
    top: 150px;
    right: 10px !important;
    left: unset !important;
    padding: 8px !important;
    padding-right: 20px !important;
    min-width: 350px !important;
    max-width: 500px !important;
    width: auto;
    z-index: 2 !important;
}

.toast-container .md-toast-content{
    /* box-shadow: unset; */

    background-color: white;
    color: black;

    /* border: 1px solid #5cc8ff; */
    border-radius: 10px;

    padding: 0;
    margin: 0;

    width: 100%;
    height: 70px;

    min-height: 70px;
    max-height: 70px;
}

.toast-container .md-toast-content .toast-border-decorator {
    width: 16px;
    height: 100%;

    margin-right: 16px;
    padding: 0;
}
.toast-container.success .md-toast-content .toast-border-decorator {
    background: #31af91;
}
.toast-container.error .md-toast-content .toast-border-decorator {
    background: #c93636
}

.toast-container .md-toast-content .toast-divider{
    width: 2px;
    background: #dcdcdc;

    height: 100%;
    
    margin-right: 15px;
    margin-left: 15px;
}

.toast-container .md-toast-content .image-toast-container{
    width: 35px;
    height: 35px;
}

.toast-container .md-toast-content .image-toast-container img{
    width: 100%;
    height: 100%;
}

.toast-container .md-toast-content .text-toast-container{
    font-size: 12px;
    width: 100%;

    margin-right: 12px;
    margin-left: 12px;
}

.toast-container .md-toast-content .toast-close-container{
    background: #dedede1a;
    width: 40px;

    position: absolute;
    top: -2px;
    right: -2px;
}

.toast-container .md-toast-content .toast-close-container:hover {
    background: #c8c6c633 !important;
}

.toast-container .md-toast-content .toast-close-container .md-button.md-icon-button{
    padding: 0;
    margin: 0;

    padding-left: 10px;
    padding-right: 10px;

    width: 100%;
    height: 100%;
}

.toast-container .md-toast-content .toast-close-container .md-button.md-icon-button md-icon{
    font-size: 16px;

    width: 18px;
    height: 18px;

    min-height: 18px;
    min-width: 18px;

    color: #6b6b6b;
}
.toast-container .toast-progress-container {
    width: calc(100% - 16px);
    height: 4px; /* Adjust the height as needed */

    background-color: #f3f3f3; /* Background color for the container */
    
    position: absolute;
    bottom: -2px;
    left: 12px;
}
.toast-container .toast-progress-container .toast-progress-bar {
    width: 100%;
    height: 100%;

    animation: decreaseProgress 5s linear forwards;
}
.toast-container.success .toast-progress-container .toast-progress-bar {
    background-color: #31af91; /* Background color for the progress bar */
}
.toast-container.error .toast-progress-container .toast-progress-bar {
    background-color: #c93636; /* Background color for the progress bar */
}
@keyframes decreaseProgress {
    from {
        width: 100%;
    }
    to {
        width: 0;
    }
}



.capitalize {
    text-transform: capitalize;
}

.uppercase {
    text-transform: uppercase;
}




.page-information-placeholder {
    border: 1px solid #ccc;
    border-radius: 15px;

    height: 100%;
    width: auto;
    max-width: 525px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: space-around;
    justify-content: space-evenly;

    margin-top: 25px;
    margin-bottom: 25px;
}
.page-information-placeholder.challenge, .page-information-placeholder.completed-action, .page-information-placeholder.loading-document{
    min-width: 525px;
}
@media (max-height: 800px) {
    .page-information-placeholder {
        max-width: 425px !important;
        min-width: 100% !important;
    }
    .page-information-placeholder.challenge, .page-information-placeholder.completed-action, .page-information-placeholder.loading-document{
        min-width: 225px !important;
        width: 100%;
    }
}
.page-information-logo {
    max-width: 175px;
    min-width: 100px;
    width: 50%;

    padding-top: 10%;
}
@media (max-height: 800px) {
    .page-information-logo {
        min-width: 125px !important;
        max-width: 150px !important;

        padding-top: 5%;
    }
}
.page-information-logo img {
    width: 100%;
}
.page-information-content {
    height: 75%;

    display: flex;
    flex-direction: column;

    align-items: center;

    margin-left: 10%;
    margin-right: 10%;

    padding-top: 10%;
}
@media (max-height: 800px) {
    .page-information-content {
        padding-top: 5%;
    }
}
.page-information-placeholder .title-placeholder {
    color: #02507e;
    font-weight: bold;

    font-size: 14px;
}
.page-information-placeholder .image-placeholder {
    min-width: 210px;
    max-width: 215px;
    width: auto;

    padding-top: 10%;
    padding-bottom: 10%;
}
.page-information-placeholder.completed-action .image-placeholder {
    margin: auto;
    max-width: 355px;
}
.page-information-placeholder.loading-document .image-placeholder {
    min-width: 250px;
    max-width: 355px;
}
@media (max-height: 800px) {
    .page-information-placeholder .image-placeholder {
        min-width: 125px !important;
        max-width: 185px !important;
    }
    .page-information-placeholder.completed-action .image-placeholder {
        min-width: 125px !important;
        max-width: 75% !important;
    }
}
.page-information-placeholder .image-placeholder img{
    width: 100%;
}
.page-information-placeholder .explanation-placeholder {
    text-align: justify;
}
.page-information-placeholder .explanation-placeholder form{
    padding-top: 50px;
}
.page-information-placeholder .explanation-placeholder form input {
    border: 1px solid #c6dbed;
    border-radius: 3px;
    padding: 5px 10px;
    min-width: 200px;
}
.page-information-placeholder .explanation-placeholder form label {
    line-height: 1.5em;
    padding-left: 10px;
}
.page-information-footer {
    display: flex;
    flex-direction: column;

    align-items: center;
}
.page-information-placeholder .salutation-placeholder {
    color: #02507e;
    font-weight: 500;
    font-size: 14px;

    padding-bottom: 75px;
}
@media (max-height: 800px) {
    .page-information-placeholder .salutation-placeholder{
        padding-bottom: 25px;
    }
}
.page-information-placeholder .button-placeholder {
    width: 175px;
    padding-bottom: 25px;
}
.page-information-placeholder .button-placeholder .btn{
    width: 135px;
}


.custom-dialog-message {
    max-width: 450px;
}
.custom-dialog-message form {
    margin: auto; 
    margin-left: 0; 
    margin-right: 0;
}
.custom-dialog-message .close-button-placeholder {
    position: absolute; 
    top: 4px; 
    right: 6px;

    padding: 0;
}
.custom-dialog-message .close-button-placeholder .md-button {
    margin: 0;
    padding: 0;

    min-width: 36px;
    max-width: 36px;
}
.custom-dialog-message .action-button {
    background-color: #fafafa !important;
    color: rgb(33,33,33) !important;
}
.custom-dialog-message .action-button.focused{
    color: rgba(255,255,255,0.87) !important;
    background-color: rgb(29,113,184) !important;
}


.action-dialog-message {
    width:450px; 
    min-width:450px;

    border: 2px solid lightgray;
}
.action-dialog-message .title {
    font-size: 16px;
    font-weight: bold;

    margin-bottom: 4px;
}
.action-dialog-message .subtitle {
    font-size: 14px;
}
.action-dialog-message .content .info-title {
    font-size: 16px;
    font-weight: 500;
}
.action-dialog-message .content .info-text {
    font-size: 13px;
    margin-bottom: 8px;
}
.action-dialog-mesage md-radio-button {
    margin-bottom: 24px;
}
.action-dialog-message .radio-button-label {
    font-weight: bold;
    font-size: 14px;

    margin-bottom: 4px;
}
.action-dialog-message .radio-button-description {
    font-size: 12px;
}
.action-dialog-message .btn {
}
.action-dialog-message .btn.discreet{
}
.action-dialog-message .btn.active {
    color: white;
    font-weight: bold;

    background-color: rgb(29,113,184) !important;
}



.sms-consumition-advice {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    font-size: 9px;
    /*color: red;*/
    color: #0DABDE;
    padding-left: 14px;
    padding-bottom: 14px;
}
.recipient-identity-configuration .sms-consumition-advice {
    padding-left: 0px;

    padding-top: 8px;
    padding-bottom: 0px;
}
.reminders-configuration .sms-consumition-advice {
    padding-left: 24px;
    padding-bottom: 12px;
    min-height: 24px;
}
.sms-consumition-advice .info {
    color: red;
    margin-left: 20px;
    position: relative;
    cursor: help;
}
.sms-consumition-advice .info:hover .sms-advice-placeholder {
    opacity: 1;
    pointer-events: all;
}
.sms-advice-placeholder {
    pointer-events: none;
    transition: 0.1s ease-in-out all;
    opacity: 0;
    display: flex;
    width: 250px;
    padding-bottom: 10px;
    position: absolute;
    left: -10px;
    bottom: 100%;
}


.poppable-container {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 9px;
    cursor: help;
}
.poppable-container:hover .poppable {
    opacity: 1;
    pointer-events: all;
}
.poppable {
    pointer-events: none;
    transition: 0.1s ease-in-out all;
    opacity: 0;
    display: flex;
    width: 250px;
    padding-bottom: 10px;
    position: absolute;
    left: -10px;
    bottom: 100%;
}
.poppable-content:after {
    width: 0;
    height: 0;
    border-left: 0px solid transparent;
    border-right: 11px solid transparent;
    border-top: 10px solid #1d71b8;
    border-top: 10px solid #f0f0f0;
    content: "";
    position: absolute;
    left: 20px;
    top: 100%;
}
.poppable-content{
	width: 250px;
    min-height: 40px;
    margin: 0px auto;
    font-weight: normal;
    text-align: center;
    border-radius: 6px;
    box-sizing: border-box;
    display: flex;
    position: relative;
    padding: 10px;
    color: black;
    font-size: 9px;
   background: #F0F0F0;
    text-align: left;
}

.poppable.blue-bg .poppable-content{
	background: #1d71b8;
	color:white;
}
.poppable.blue-bg .poppable-content:after {
    border-top: 10px solid #1d71b8;
    content: "";
}


*[class$='configuration'] .checkbox-placeholder > .poppable-container {
	margin-left: 10px;
	color: black;
	font-size: 12px;
	font-weight: 500;
}
*[class$='configuration'] .sms-consumition-advice > .poppable-container{
	margin-left: 10px;
	color: red;
	font-size: 9px;
}


.notification-box {
    flex: none;
    background: #e8f3f9;
    border-radius: 5px;
    margin-top: 20px;
    width: 450px;
    padding: 20px;
    max-width: 100%;
    display: flex;
    box-sizing: border-box;
    font-size: 10px;
    color: #333333;
}
.notification-box > .text {
    display: flex;
    flex-direction: column;
}
.notification-box > .text > span+span {
    margin-top: 10px;
}
.notification-box a {
    color: blue;
}


.purchasables-container {
}
.purchasables-container md-divider {
    margin-top: 26px;
    margin-bottom: 18px;
}
.purchasables-container button {
    width: 175px;
    max-width: 175px;

    margin-top: 16px;
}
.purchasables-container md-radio-button {
    margin: 0;
}
.purchasables-container table {
    width: 100%;
}
.purchasables-container table thead th {
    text-align: left;
}
.purchasables-container .purchasables-selector tbody tr td {
    padding-top: 20px;
}
.purchasable-configuration md-checkbox {
    margin: 0;
}
.purchasable-configuration .input-placeholder-container {
    padding-top: 0;
}

.automated-purchase-configuration {
    background: #f7f7f7;
    border-radius: 10px;
    width: 100%;

    padding-top: 12px;
    padding-bottom: 12px;
}
.automated-purchase-configuration button {
    width: 240px;
    max-width: 240px;
}

.content-spacer {
    padding-top: 16px;
    padding-bottom: 16px;
}


.version-changes-alert {
    width: 100%;
    min-width: 475px;
    max-width: 620px;
}
.version-changes-alert md-toolbar {
    height: 125px;
}
.version-changes-alert .md-toolbar-tools h3 {
    color: white;
    font-weight: 500;
}
.version-changes-alert .logo-container {
    position: absolute;
    display: flex;
    align-items: flex-end;
    align-items: end;
    width: 125px;
    height: 70px;
    background: white;
    justify-content: center;
    top: 69px;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
}
.version-changes-alert .logo-container  img {
    width: 100%;
    max-width: 100px;
    max-height: 50px;
}
.version-changes-alert form {
    margin: auto; 
    margin-left: 0; 
    margin-right: 0;
}
.version-changes-alert .image-container {
    margin: 0;
    padding: 0;
}
.version-changes-alert .image-container img {
    width: 100%;
}
.version-changes-alert .close-button-placeholder {
    position: absolute; 
    top: 4px; 
    right: 6px;

    padding: 0;
}
.version-changes-alert .close-button-placeholder .md-button {
    margin: 0;
    padding: 0;

    min-width: 36px;
    max-width: 36px;
}
.version-changes-alert p {
    font-size: 13px;
}

.purchase-menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

.purchase-auto {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

.clickable{
	cursor: pointer;
}


.qr-guide {
    padding: 8px;
}
.qr-guide li { 
    padding-bottom: 12px;
}
.qr-image {
    padding: 8px;
}
.qr-placeholder {
    width: 185px; /*same as qr size */
    height: 185px;

    position: relative;
}
.qr-placeholder .loader{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%) 
}
.qr-placeholder .mask {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);

    border-radius: 50%;
    width: 125px;
    height: 125px;

    background: white;
    color: black;
}
.qr-placeholder .mask .mask-text {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);

    text-align: center;
}




.restrict-access-menu li {
	box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
	height: auto;
	padding-top: 8px;
	padding-bottom: 8px;
	white-space: normal;
}
.restrict-access-menu li:last-child {
	border-bottom-width: 0;
}
.restrict-access-menu .item-title{
    display: flex;
    align-items: center;
    line-height: 24px;
    font-size: 11px;

    /* font-weight: 600; */
    color: #333;
}
.restrict-access-menu .item-data {
	display: block;
	line-height: 15px;
	font-size: 9px;
	color: #777;
	margin-left: 20px;
}
.restrict-access-menu .item-title md-icon {
	height: 15px;
	width: 15px;
	min-width: 15px;
	min-height: 15px;
	margin: 0;
	font-size: 15px;
	margin-right: 5px;
}
.restrict-access-menu {
	min-width: 500px !important;
}