: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-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;
}




.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;
}
.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;
}







.participants-list {
    background: white;
    padding: 12px 0px;
    border-radius: 12px;

    margin-bottom: 12px;
    margin-right: 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;
}



.notifications-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;
}
.notifications-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%;
}
.notifications-advice p {
    margin: 0;
    text-align: left;
}
.notifications-advice > p {
    display: flex;
    flex-direction: column;
    margin: 0;
    align-items: center;
}
.notifications-advice .button {
    margin-top: 15px;
    height: 20px;
    padding: 4px 10px;
    width: auto;
    font-size: 11px;
}
.notifications-advice .notifications-advice-buy {
    font-size: 9px;
    color: white;
    padding-top: 10px;
}
.notifications-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 {
}

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-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;
}

.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;
}


.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: auto;
    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;
    width: 100%;
    height: 24px;

    display: flex;
    align-items: center;
    
    padding: 0px 12px 0px 8px;
    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 {
    background: #eee;

    display: flex;
    flex-direction: column;
    
    overflow-x: hidden;
    padding: 24px 12px;

    height: 100%;
}

@media (max-width: 1024px) {
    .place-signatures .signer,
    .place-signatures .signer-field,
    .place-signatures .page-thumb,
    .place-signatures .indicador_firma,
    .place-signatures .indicador_campo,
    .place-signatures .ui-resizable-handle,
    .place-signatures .fold-button {
        touch-action: none;
    }

    .place-signatures .indicador_firma.selected .delete_signature,
    .place-signatures .indicador_campo.selected .delete_field {
        display: initial;
    }

    .place-signatures .indicador_firma.selected .delete_signature md-icon,
    .place-signatures .indicador_campo.selected .delete_field md-icon {
        display: block;
    }
}
.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;
}




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%;
}
.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;
}

.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;

    margin-top: 25px;
    margin-bottom: 25px;

    padding: 24px;
}
.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%;
}
@media (max-height: 800px) {
    .page-information-logo {
        min-width: 125px !important;
        max-width: 150px !important;
    }
}
.page-information-logo img {
    width: 100%;
}
.page-information-content {
    display: flex;
    flex-direction: column;

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

    margin-left: 5%;
    margin-right: 5%;

    margin-bottom: 16px;
    margin-top: 16px;

    height: 100%;
}
@media (max-height: 800px) {
    .page-information-content {
        
    }
}
.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;
}
.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{
}
.page-information-placeholder .explanation-placeholder form input {
    border: 1px solid #c6dbed !important;
    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: 24px;
}
@media (max-height: 800px) {
    .page-information-placeholder .salutation-placeholder{
    }
}
.page-information-placeholder .button-placeholder {
    width: 175px;
}
.page-information-placeholder .button-placeholder .btn{
    width: 135px;
}





.notifications-consumition-advice {
    position: relative;
    flex: 1;

    display: flex;
    align-items: center;

    font-size: 9px;    
    color: #0DABDE;
    
    padding-bottom: 14px;
}
.recipient-identity-configuration .notifications-consumition-advice {
    padding-left: 0px;

    padding-top: 8px;
    padding-bottom: 0px;
}
.reminders-configuration .notifications-consumition-advice {
    padding-left: 24px;
    padding-bottom: 12px;
    min-height: 24px;
}
.notifications-consumition-advice .info {
    color: red;
    margin-left: 20px;
    position: relative;
    cursor: help;
}
.notifications-consumition-advice .info:hover .notifications-advice-placeholder {
    opacity: 1;
    pointer-events: all;
}
.notifications-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'] .notifications-consumition-advice > .poppable-container{
    margin-left: 10px;
    color: red;
    font-size: 9px;
}


.notification-box {
    display: flex;
    flex: none;
    
    background: #e8f3f9;
    
    border-radius: 5px;
    box-sizing: border-box;

    padding: 20px;

    margin-top: 20px;
    margin-bottom: 20px;

    width: 450px;
    max-width: 100%;

    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: 12px;
    margin-bottom: 12px;
}
.purchasables-container button {
    width: 175px;
    max-width: 175px;

    margin-top: 16px;
}
.purchasables-container md-radio-button {
    margin: 0;
}

.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: 715px;
    max-width: 850px;
}
.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 .image-container {
    margin: 0;
    padding: 0;

    margin-right: 32px;
}
.version-changes-alert .image-container img {
    width: 150px;
    height: auto;
}
@media(max-width: 768px) {
    .version-changes-alert .image-container {
        margin-right: 0;
    }
}
.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 .version-content {
    display: flex;
    flex-direction: row;
    align-items: center;
}
@media(max-width: 768px) {
    .version-changes-alert .version-content {
        flex-direction: column;
        align-items: center;
    }
}


.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;
}