/* Main Styles for New Developer Portal
- 	1. Fonts
- 	2. Global Styles
*/


/*** Global Styles ***/
body { color: #000 !important; }



/*** Helper Classes: apply theses classes to almost any element, in order to alter their style (Color, Spacing, Typography, etc) ***/

/** Color Text **/
/* Danger Text */
.page__content .help.is-danger {
    color: #e94f3d;
    font-size: 12px;
    margin: 7px 0;
}

/** Widths **/
.width-70 { width: 70%; }
.width-100 { width: 100%; }

/** Disable Elements **/
.is-disabled { opacity: 0.6; }


/*** Page Titles H Tags ***/
.page__content h1.page__title  {
    font-size: 35px;
    line-height: 41px;
    margin: 0.5em 0 1em;
}

/*** Well ***/
.well {
	background: #f8f9fa;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
    border-radius: 4px;
    min-height: 20px;
    padding-left: .75rem;
    padding-right: .75rem;
}

/*** Buttons ***/
.button,
.button.is-tertiary {
	background-color: #fff;
    border-color: #dbdbdb;
    border-width: 1px;
    border-radius: 4px !important;
    color: #363636;
    cursor: pointer;
    -ms-flex-pack: center;
    justify-content: center;
    padding: .375em .75em !important;
    text-align: center;
    transition: color .15s ease-in-out,background-color .15s ease-in-out;
    white-space: nowrap;
    will-change: transform;
}

.button:active { border-color: #4a4a4a; }

.button:focus { border-color: #00a26e; }

.button:hover {
	border-color: #b5b5b5;
	color: #363636;
}

.button:active,
.button:focus { 
	box-shadow: none !important;
	color: #363636;
	outline: none;
}

	.is-primary {
		background-color: var(--ansira-darkblue) !important;
	    border-color: transparent;
	    color: #fff;
	}

	.button.is-primary:disabled,
	.button.is-primary[disabled],
	.button.is-primary.is-disabled {
		background-color: var(--secondary) !important;
	    border-color: transparent !important;
	    opacity: 0.6 !important;
	}

	.button.is-primary:active,
	.button.is-primary:hover {
		background-color: var(--ansira-purple) !important;
	    border-color: transparent !important;
	    color: #fff !important;
	    text-decoration: none !important;
	}

	.button.is-primary:focus,
	.button.is-secondary:focus,
	.button.is-danger:focus {
		border-color: transparent;
    	color: #fff;
	}

	.button.is-secondary {
		background-color: #009bb2;
	    border-color: transparent;
	    color: #fff;
	}

	.button.is-secondary:active,
	.button.is-secondary:hover {
		background-color: #057b8c;
	    border-color: transparent;
	    color: #fff;
	}

	.button.is-danger {
		background-color: #e94f3d;
	    border-color: transparent;
	    color: #fff;
	}

	.button.is-danger:active,
	.button.is-danger:hover {
		background-color: #d73926;
	    border-color: transparent;
	    color: #fff;
	}

	.button.is-text {
		background-color: transparent;
	    border-color: transparent;
	    color: #456caa;
	    text-decoration: none;
	}

	.button.is-text:active,
	.button.is-text:focus,
	.button.is-text:hover {
		border-color: transparent;
		box-shadow: none;
		color: #2c456d;
	}


/*** Grid Classes ***/
.path--developer-portal-connections-manager-list-connections .page__content.col-md {
    padding-left: 35px;
    padding-right: 35px;
}

.path--developer-portal-connections-manager-list-connections .page__content .table thead th + th { width: 40%; }
.path--developer-portal-connections-manager-list-connections .page__content .table thead th + th + th { width: auto; }

.page__content .table {
    background: #ffffff;
    border-collapse: collapse;
    display: table;
    grid-area: table;
    height: auto; /* Value needs to be reviewed */
    width: 100%;
}

    .page__content .table thead tr { border-bottom: 1px solid #9e9e9e; }

    .page__content .table thead th {
        background: #f8f9fa;
        border-bottom-color: transparent;
        color: #424242;
        font-size: 14px;
        font-weight: 600;
        height: auto;
        max-width: 150px;
        padding: 10px 15px;
        text-transform: capitalize;
    }

    .page__content .table tr.even { background: #f7f7f7; }

    .page__content .table tr.odd { background: transparent; }

        .page__content .table tr td {
            color: #424242;
            font-size: 14px;
            height: auto;
            max-width: 150px;
            min-height: 40px;
            padding: 10px 15px;
            vertical-align: middle;
            word-break: break-all !important;
        }

        .page__content .table tr td:last-child { border-right: none; }

        .page__content .table tr:last-child td { border-bottom: none; }

            .page__content .table tr td a.btn-select-scopes,
            .page__content .table tr td button.btn-select-scopes {
                background-color: #009bb2;
                border-color: transparent;
                border-radius: 4px;
                border-width: 1px;
                color: #fff;
                cursor: pointer;
                display: inline-block;
                font-size: 14px;
                padding: calc(.375em - 1px) .75em;
                text-align: center;
                white-space: nowrap;
            }

            .page__content .table tr td a.btn-select-scopes:hover,
            .page__content .table tr td button.btn-select-scopes:hover  {
                background-color: #057b8c;
                border-color: transparent;
                color: #fff;
                text-decoration: none;
            }

    .page__content nav .pagination { justify-content: left !important; }

	    .page__content nav .pagination .pager__item { border: none; }

		    .page__content nav .pagination .page-link {
		    	border-radius: 4px;
		    	color: #424242;
		    	font-size: 12px;
		    	font-weight: 300;
		    	height: auto;
		    	min-width: 14px;
		    	padding: 5px 7px;
		    	line-height: 12px;
		    } 

		    .page__content nav .pagination .page-link:focus { box-shadow: none; }

			    .page__content nav .pagination .is-active .page-link,
			    .page__content nav .pagination .is-active .page-link:focus,
			    .page__content nav .pagination .is-active .page-link:hover {
			    	background-color: transparent;
			    	color: var(--ansira-purple);
			    	font-weight: 700;
			    	text-align: center;
			    	text-decoration: none;
			    }

			    	.page__content nav .pagination .page-link:focus,
			    	.page__content nav .pagination .page-link:hover { background-color: #eeeeee; }

			    .page__content nav .pagination .page-link span {
			    	color: #00a26e;
			    	font-size: 30px;
			    	font-weight: 700;
			    	line-height: 8px;
			    }

			.page__content nav .pagination .pager__item--last,
			.page__content nav .pagination .pager__item--first { display: none; }

			.page__content nav .pagination .pager__item--next a,
			.page__content nav .pagination .pager__item--previous a { position: relative; }

				.page__content nav .pagination .pager__item--next a span,
				.page__content nav .pagination .pager__item--previous a span { font-size: 0; }

					.page__content nav .pagination .pager__item--next a span:after {
						content: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 105 140' style='enable-background:new 0 0 105 140;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%235B2FF1;%7D%0A%3C/style%3E%3Cpath class='st0' d='M91,76.8l-54.4,54.4c-3.8,3.8-9.8,3.8-13.6,0l-9-9c-3.8-3.8-3.8-9.8,0-13.6L52.6,70L14,31.5 c-3.8-3.8-3.8-9.8,0-13.6l9-9.1c3.8-3.8,9.8-3.8,13.6,0L91,63.2C94.8,67,94.8,73,91,76.8z'/%3E%3C/svg%3E");
						left: 0;
						position: absolute;
						right: 0;
						top: 4px;
                        width: 10px;
					}

					.page__content nav .pagination .pager__item--previous a span:after {
						content: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 105 140' style='enable-background:new 0 0 105 140;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%235B2FF1;%7D%0A%3C/style%3E%3Cpath class='st0' d='M91,76.8l-54.4,54.4c-3.8,3.8-9.8,3.8-13.6,0l-9-9c-3.8-3.8-3.8-9.8,0-13.6L52.6,70L14,31.5 c-3.8-3.8-3.8-9.8,0-13.6l9-9.1c3.8-3.8,9.8-3.8,13.6,0L91,63.2C94.8,67,94.8,73,91,76.8z'/%3E%3C/svg%3E");
						left: 0;
                        position: absolute;
                        top: 0px;
                        transform: rotate(180deg);
                        width: 10px;
					}
                    .page__content nav .pagination .pager__item--previous a:hover span:after {
                        content: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 105 140' style='enable-background:new 0 0 105 140;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%2310092A;%7D%0A%3C/style%3E%3Cpath class='st0' d='M91,76.8l-54.4,54.4c-3.8,3.8-9.8,3.8-13.6,0l-9-9c-3.8-3.8-3.8-9.8,0-13.6L52.6,70L14,31.5 c-3.8-3.8-3.8-9.8,0-13.6l9-9.1c3.8-3.8,9.8-3.8,13.6,0L91,63.2C94.8,67,94.8,73,91,76.8z'/%3E%3C/svg%3E");
                        transform: rotate(180deg);
                    }
                    .page__content nav .pagination .pager__item--next a:hover span:after {
                        content: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 105 140' style='enable-background:new 0 0 105 140;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%2310092A;%7D%0A%3C/style%3E%3Cpath class='st0' d='M91,76.8l-54.4,54.4c-3.8,3.8-9.8,3.8-13.6,0l-9-9c-3.8-3.8-3.8-9.8,0-13.6L52.6,70L14,31.5 c-3.8-3.8-3.8-9.8,0-13.6l9-9.1c3.8-3.8,9.8-3.8,13.6,0L91,63.2C94.8,67,94.8,73,91,76.8z'/%3E%3C/svg%3E");
                    }

                    li.page-item.pager__item.pager__item--previous,
                    li.page-item.pager__item.pager__item--next {
                        width: 10px;
                        height: 10px;
                    }

                    li.page-item.pager__item.pager__item--previous .page-link:hover,
                    li.page-item.pager__item.pager__item--next .page-link:hover {
                        display: flex;
                        background-color: transparent;
                    }


/*** Form Classes ***/

/* Input Validations */
.page__content input.ui-validation-required { border: 1px solid #e94f3d !important; }



/*** Cards ***/

/** Card Container **/
.page__content .m-card {
    border: 1px solid #ced4da !important; /* Class .border is overwritting this color */
    border-radius: .25rem;
    padding-block-start: 44px;
    padding-inline-start: 0;
    padding-inline-end: 0;
    position: relative;
}

    /* Card Header */
    .page__content .m-card legend {
        padding-left: 0 !important;
        padding-right: 0 !important;
        position: absolute;
        top: 0;
        width: 100%;
    }

        .page__content .m-card legend span.fieldset-legend {
            display: block;
            font-size: 18px;
            font-weight: 700;
            padding: 0 34px;
            width: 100%;
        }

    /* Card Body */
    .page__content .m-card .fieldset-wrapper { padding: 20px 34px !important; } /* Class to overwrite .p-4 */

        .page__content .m-card .fieldset-wrapper .form-item {
            display: block;
            margin-bottom: 0.5em;
            margin-top: 0.5em;
        }

            .page__content .m-card .fieldset-wrapper .form-item input.form-control {
                background: #ffffff;
                border: 1px solid #dbdbdb;
                border-radius: 4px;
                width: 100%;
            }

            input.formtxt-secret::-webkit-input-placeholder { /* Chrome/Opera/Safari */
                font-size: 22px;
                position: absolute;
            }

            .page__content .m-card .fieldset-wrapper .form-item input.form-control:hover { border-color: #b5b5b5; }

            .page__content .m-card .fieldset-wrapper .form-item input.form-control:active,
            .page__content .m-card .fieldset-wrapper .form-item input.form-control:focus {
                border-color: #00a26e;
                box-shadow: 0 0 0 0.125em rgba(121,87,213,0.25);
            }

            .page__content .m-card .fieldset-wrapper .form-item input.form-control:disabled {
            	background: #f0f0f0;
            	opacity: 0.6;
            }

            .page__content .m-card .fieldset-wrapper .form-item input.form-control::placeholder {
                color: #444444;
                opacity: 0.6;
            }

        .page__content .m-card .fieldset-wrapper .form-item.form-item-secret /* This class "form-item-secret" is auto-generated, it seems we can not add a new class on this div */ {
            display: inline-block;
            width: 60%;
        }

        .page__content .m-card .fieldset-wrapper .ui-generate-secret-btn {
            background: #ffffff;
            border: 1px solid #dbdbdb;
            border-radius: 4px;
            color: #363636;
            display: inline-block;
            font-size: 14px;
            font-weight: 400;
            height: 100%;
            letter-spacing: 0;
            padding: calc(.375em - 1px) .75em;
            text-transform: unset;
            width: auto;
        }

        .page__content .m-card .fieldset-wrapper .ui-generate-secret-btn:focus,
        .page__content .m-card .fieldset-wrapper .ui-generate-secret-btn:hover {
            background-color: #ffffff;
            border-color: #b5b5b5;
            color: #363636
        }

    /* Card Body (variation specific for New Connection Scopes) */
    .page__content .m-card.ui-scopes-card-size {
        font-size: 0;
        padding-bottom: 0;
        width: 100%;
    }

        .page__content .m-card.ui-scopes-card-size .fieldset-wrapper {
            display: flex;
            padding-bottom: 0 !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
            padding-top: 13px !important;
        }

            .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-scopes-to-select {
                display: inline-block;
                font-size: 16px;
                position: relative;
                vertical-align: top;
                width: 70%;
            }

            .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-scopes-to-select:after {
                background: #ced4da;
                content: '';
                height: 100%;
                left: 100%;
                position: absolute;
                top: 0;
                width: 1px;
            }

            	.page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-scopes-to-select .table-scopes-container {
        		    height: auto;
                    margin: 20px 35px 30px 35px;
            	}

                .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-scopes-to-select .form-item-search {
                    margin-left: 34px;
                    margin-right: 34px;
                    margin-top: 28px;
                    position: relative;
                }

                .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-scopes-to-select .form-item-search:after {
                    background-image: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyBkYXRhLXByZWZpeD0nZmFzJyBkYXRhLWljb249J3NlYXJjaCcgY2xhc3M9J3N2Zy1pbmxpbmUtLWZhIGZhLXNlYXJjaCBmYS13LTE2JyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJz48cGF0aCBmaWxsPScjZGJkYmRiJyBkPSdNNTA1IDQ0Mi43TDQwNS4zIDM0M2MtNC41LTQuNS0xMC42LTctMTctN0gzNzJjMjcuNi0zNS4zIDQ0LTc5LjcgNDQtMTI4QzQxNiA5My4xIDMyMi45IDAgMjA4IDBTMCA5My4xIDAgMjA4czkzLjEgMjA4IDIwOCAyMDhjNDguMyAwIDkyLjctMTYuNCAxMjgtNDR2MTYuM2MwIDYuNCAyLjUgMTIuNSA3IDE3bDk5LjcgOTkuN2M5LjQgOS40IDI0LjYgOS40IDMzLjkgMGwyOC4zLTI4LjNjOS40LTkuNCA5LjQtMjQuNi4xLTM0ek0yMDggMzM2Yy03MC43IDAtMTI4LTU3LjItMTI4LTEyOCAwLTcwLjcgNTcuMi0xMjggMTI4LTEyOCA3MC43IDAgMTI4IDU3LjIgMTI4IDEyOCAwIDcwLjctNTcuMiAxMjgtMTI4IDEyOHonLz48L3N2Zz4=);
                    background-position: 100% calc(.375em + .1875rem);
                    background-repeat: no-repeat;
                    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
                    content: '';
                    cursor: pointer;
                    height: 100%;
                    position: absolute;
                    right: 10px;
                    top: 0;
                    width: 30px;
                }

                .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-scopes-to-select .table-scopes {
                    background: #ffffff;
                    border: 1px solid #eee;
                    border-collapse: collapse;
                    display: table;
                    grid-area: table;
                    height: auto; /* Value needs to be reviewed */
                    margin-bottom: 0;
                }

                    .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-scopes-to-select .table-scopes thead tr { border-bottom: 1px solid #9e9e9e; }

                    .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-scopes-to-select .table-scopes thead th {
                        background: #fafafa;
                        border-bottom-color: transparent;
                        color: #9e9e9e;
                        font-size: 12px;
                        font-weight: 600;
                        height: auto;
                        max-width: 150px;
                        padding: 10px 15px;
                        text-transform: uppercase;
                    }

                    .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-scopes-to-select .table-scopes thead th:nth-child(1) { width: 30%; }

                    .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-scopes-to-select .table-scopes thead th:nth-child(2) { width: 55%; }

                    .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-scopes-to-select .table-scopes tr.even { background: #f7f7f7; }

                    .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-scopes-to-select .table-scopes tr.odd { background: transparent; }

                        .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-scopes-to-select .table-scopes tr td {
                            border-bottom: 1px solid #eee;
                            border-right: 1px solid #eee;
                            color: #424242;
                            font-size: 14px;
                            height: auto;
                            max-width: 150px;
                            min-height: 40px;
                            padding: 10px 15px;
                            word-break: break-all !important;
                        }

                        .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-scopes-to-select .table-scopes tr td:last-child { border-right: none; }

                        .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-scopes-to-select .table-scopes tr:last-child td { border-bottom: none; }

                            .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-scopes-to-select .table-scopes tr td a.btn-select-scopes,
                            .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-scopes-to-select .table-scopes tr td button.btn-select-scopes {
                                background-color: transparent;
                                border: 1px solid #dbdbdb;
                                border-radius: 4px;
                                border-width: 1px;
                                color: #363636;
                                cursor: pointer;
                                display: inline-block;
                                font-size: 14px;
                                font-weight: 400;
                                padding: calc(.375em - 1px) .75em;
                                text-align: center;
                                white-space: nowrap;
                                width: 100%
                            }

                            .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-scopes-to-select .table-scopes tr td a.btn-select-scopes:hover,
                            .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-scopes-to-select .table-scopes tr td button.btn-select-scopes:hover  {
                                background-color: #ffffff;
                                border: 1px solid #b5b5b5;
                                color: #363636;
                                text-decoration: none;
                            }

                            .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-scopes-to-select .table-scopes tr td a.btn-select-scopes.is-disabled,
                            .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-scopes-to-select .table-scopes tr td a.btn-select-scopes[disabled],
                            .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-scopes-to-select .table-scopes tr td button.btn-select-scopes[disabled] { 
                                cursor: initial;
                                opacity: 0.6;
                            }

                            .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-scopes-to-select .table-scopes tr td button.btn-select-scopes[disabled]:hover { background: #009bb2; }

                .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-selected-scopes {
                    background: #ffffff;
                    display: inline-block;
                    font-size: 16px;
                    width: 30%;
                }

                .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-selected-scopes-list {
                    background: #fafafa;
                    border-bottom: 1px solid #ced4da;
                    font-size: 16px;
                    font-weight: 500;
                    margin: 0;
                    padding: 15px;
                }
                    .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-selected-scopes h2 {
                        display: inline-block;
                        font-size: 16px;
                        font-weight: 500;
                        margin-bottom: 0                        
                    }
                    .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-selected-scopes-list .ui-copy-icon { 
                        background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 31.8 40.6' style='enable-background:new 0 0 31.8 40.6;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23707070;%7D .st1%7Bfill-rule:evenodd;clip-rule:evenodd;fill:%23707070;%7D%0A%3C/style%3E%3Cpath class='st0' d='M9.1,0.5c-1.6,0-2.9,1.3-2.9,2.9v3.8H3.3c-1.6,0-2.9,1.3-2.9,2.9v27c0,1.6,1.3,2.9,2.9,2.9h19.4 c1.6,0,2.9-1.3,2.9-2.9v-2.8h2.9c1.6,0,2.9-1.3,2.9-2.9V10.2c0-0.3-0.1-0.5-0.3-0.7l-8.7-8.7c-0.2-0.2-0.4-0.3-0.7-0.3H13 c-0.3,0-0.5,0.1-0.7,0.3C12.1,1,12,1.2,12,1.5c0,0.3,0.1,0.5,0.3,0.7c0.2,0.2,0.4,0.3,0.7,0.3h7.7v7.7c0,0.5,0.4,1,1,1h7.7v20.3 c0,0.6-0.4,1-1,1H9.1c-0.6,0-1-0.4-1-1v-28c0-0.6,0.4-1,1-1c0.3,0,0.5-0.1,0.7-0.3C10,2,10.1,1.8,10.1,1.5c0-0.3-0.1-0.5-0.3-0.7 C9.7,0.6,9.4,0.5,9.1,0.5L9.1,0.5z M22.7,3.8l5.4,5.4h-5.4V3.8z M3.3,9.2h2.9v22.3c0,1.6,1.3,2.9,2.9,2.9h14.5v2.8c0,0.6-0.4,1-1,1 H3.3c-0.6,0-1-0.4-1-1v-27C2.4,9.6,2.8,9.2,3.3,9.2L3.3,9.2z'/%3E%3Cpath class='st1' d='M12.9,26.6h12c0.6,0,1-0.4,1-1s-0.4-1-1-1h-12c-0.6,0-1,0.4-1,1S12.3,26.6,12.9,26.6z'/%3E%3Cpath class='st1' d='M12,22.6h12c0.6,0,1-0.4,1-1s-0.4-1-1-1H12c-0.6,0-1,0.4-1,1S11.5,22.6,12,22.6z'/%3E%3Cpath class='st1' d='M12.9,18.6h12c0.6,0,1-0.4,1-1s-0.4-1-1-1h-12c-0.6,0-1,0.4-1,1S12.3,18.6,12.9,18.6z'/%3E%3C/svg%3E");
                        background-repeat: no-repeat;
                        cursor: pointer;
                        float: right;
                        height: 30px;
                        position: relative;
                        right: -4px;
                        transition: all .3s;
                        width: 27px;
                    }
                    .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-selected-scopes-list .ui-copy-icon:hover { 
                        -webkit-filter: invert(0.22) sepia(1) saturate(10.1%) hue-rotate(45deg) brightness(0.15);
                        filter: invert(0.22) sepia(1) saturate(1.10) hue-rotate(0deg) brightness(0.15);
                        opacity: 0.85;
                    }
                    
                    .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-selected-scopes-list span.ui-scopes-amount {
                        background: #E5E5E5;
                        border-radius: 15px;
                        font-size: 12px;
                        margin-left: 10px;
                        padding: 5px 15px;
                    }

                    .ui-empty-state.ui-select-scopes {
                        color: #757575;
                        font-size: 14px;
                        text-align: center;
                        padding: 30px 0px;
                    }

                    .ui-empty-state.ui-select-scopes h5 {
                        font-size: 14px;
                        margin-bottom: 0px;
                    }

                    .ui-select-atleast-one-scope {
                        background-image: url("data:image/svg+xml,%3Csvg width='64' height='56' viewBox='0 0 64 56' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.125 0H48.875C52.5 0 55.75 2.5 56.625 6.125L63.75 34.625C63.875 35.25 64 35.875 64 36.5V48C64 52.5 60.375 56 56 56H8C3.5 56 0 52.5 0 48V36.5C0 35.875 0 35.25 0.125 34.625L7.25 6.125C8.25 2.5 11.375 0 15.125 0ZM15.125 8L9.125 32H15.5C17 32 18.375 32.875 19 34.25L20.875 37.875C21.5 39.25 22.875 40 24.375 40H39.5C41 40 42.375 39.25 43 37.875L44.875 34.25C45.5 32.875 46.875 32 48.375 32H54.875L48.875 8H15.125Z' fill='%23939393'/%3E%3C/svg%3E%0A");
                        background-position: center;
                        background-repeat: no-repeat;
                        height: 110px;
                    }

                    @media (max-width:1281px)  {

                        .ui-empty-state.ui-select-scopes { padding: 15px 0px; }

                        .ui-select-atleast-one-scope { 
                            margin: 0 auto;
                            width: 80px;
                        }

                        .ui-empty-state.ui-select-scopes p { font-size: 11px; }
                    
                        .ui-empty-state.ui-select-scopes h5 { 
                            font-size: 16px;
                            margin-bottom: 5px;
                            margin-top: 0px;
                        }

                    }

                .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-selected-scopes .selected-scope-item { 
                    background: #fafafa;
                    border: 1px solid #ced4da;
                    border-radius: 4px;
                    margin: 10px;
                }

                    .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-selected-scopes .selected-scope-item .selected-scope-title {
                        padding: 10px 20px;
                        position: relative;
                    }

                        .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-selected-scopes .selected-scope-item .selected-scope-title h3 {
                            font-size: 14px;
                            font-weight: 600;
                            margin: 0;
                            overflow: hidden;
                            padding-right: 35px;
                            text-overflow: ellipsis;
                            white-space: nowrap;
                            word-break: keep-all;
                        }

                        .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-selected-scopes .selected-scope-item .selected-scope-title span.link-scope-description {
                            bottom: 0;
                            content:'';
                            cursor: pointer;
                            height: 40px;
                            margin: auto 0;
                            position: absolute;
                            right: 30px;
                            top: 0;
                            transition: all .3s;
                            width: 20px;
                        }

                        .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-selected-scopes .selected-scope-item .selected-scope-title span.link-scope-description:after {
                            border: 2px solid transparent;
                            border-color: gray;
                            border-right: 0;
                            border-top: 0;
                            bottom: 0;
                            content: "";
                            display: block;
                            height: 9px;
                            left: 0;
                            margin: auto;
                            pointer-events: none;
                            position: absolute;
                            right: 0;
                            top: 0;
                            transform: rotate(-45deg);
                            transform-origin: center;
                            width: 9px;
                            z-index: 4;
                        }

                            .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-selected-scopes .selected-scope-item .selected-scope-title span.link-scope-description:hover:after { border-color: #3a3939 }

                            .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-selected-scopes .selected-scope-item .selected-scope-title span.link-scope-description a { color: transparent; }

                        .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-selected-scopes .selected-scope-item .selected-scope-title span.link-scope-remove {
                            bottom: 0;
                            content:'';
                            cursor: pointer;
                            height: 40px;
                            margin: auto 0;
                            position: absolute;
                            right: 0px;
                            top: 0;
                            width: 20px;
                        }

                        .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-selected-scopes .selected-scope-item .selected-scope-title span.link-scope-remove:after,
                        .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-selected-scopes .selected-scope-item .selected-scope-title span.link-scope-remove:before {
                            background: gray;
                            content: '';
                            height: 10px;
                            left: 0;
                            margin: 2px 2px 0;
                            pointer-events: none;
                            position:absolute;
                            right: 0;
                            top: 15px;
                            width: 2px;
                        }
                        .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-selected-scopes .selected-scope-item .selected-scope-title span.link-scope-remove:hover:after,
                        .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-selected-scopes .selected-scope-item .selected-scope-title span.link-scope-remove:hover:before { background: #3a3939 }

                        .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-selected-scopes .selected-scope-item .selected-scope-title span.link-scope-remove:before { transform: skew(40deg); }

                        .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-selected-scopes .selected-scope-item .selected-scope-title span.link-scope-remove:after { transform: skew(-40deg); }

                            .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-selected-scopes .selected-scope-item .selected-scope-title span.link-scope-remove a { color: transparent; }

                .page__content .m-card.ui-scopes-card-size .fieldset-wrapper .ui-selected-scopes .selected-scope-item .selected-scope-title + div {
                    background: #ffffff;
                    border-top: 1px solid #ced4da;
                    font-size: 14px;
                    padding: 15px 20px;
                }

    /* Card Body (variation specific for New Connection Expiration) */
    .page__content .m-card.ui-expiration-card .form-item {
        display: inline-flex;
        width: 100%;
    }
        .page__content .m-card.ui-expiration-card .form-item.form-item-assertion-expiration-date { 
            flex-direction: column;
            margin-bottom: 0px;
        }

        .page__content .m-card.ui-expiration-card .form-item.form-item-token-time-live { margin-bottom: 0px; }
        .page__content .m-card.ui-expiration-card .form-item.form-item-token-time-live,
        .page__content .m-card.ui-expiration-card .form-item.form-item-token-time-live label {
            display: block;
        }
        
        .page__content .m-card.ui-expiration-card .form-item.form-item-token-time-live input {
            display: inline-block;
            position: relative;
            z-index: 123;
        }
        
        .page__content .m-card.ui-expiration-card .form-item.form-item-token-time-live div.form-item--error-message.text-danger {
            display: none
        }
        
        .page__content .m-card.ui-expiration-card .form-item.form-item-token-time-live small {
            left: -4px;
            position: relative
        }

        .page__content .m-card.ui-expiration-card .form-item label {
            display: inline-block;
            font-size: 16px;
            width: 42%;
        }

        .page__content .m-card.ui-expiration-card .form-item input {
            display: inline-block;
            width: 40%;
        }

        .page__content .m-card.ui-expiration-card .form-item input.form-date {
            border: 1px solid #dbdbdb;
            border-radius: 4px;
            width: 280px;
        }

        .ui-expiration-date,
        .ui-time-to-live { 
            display: inline-block;
        }

        .page__content .m-card.ui-expiration-card .form-item.form-item-token-time-leave { font-size: 0;}

            .page__content .m-card.ui-expiration-card .form-item input.ui-token-time-input {
                border: 1px solid #dbdbdb;
                border-bottom-left-radius: 4px;
                border-bottom-right-radius: 0;
                border-top-left-radius: 4px;
                border-top-right-radius: 0px;
                font-size: 16px;
                width: 140px;
            }

            .page__content .m-card.ui-expiration-card .form-item.form-item-token-time-live .description {
                background: #fafafa;
                border: 1px solid #dbdbdb;
                border-bottom-left-radius: 0;
                border-bottom-right-radius: 4px;
                border-left: none;
                border-top-left-radius: 0;
                border-top-right-radius: 4px;
                display: inline-block;
                font-size: 16px;
                height: 38px;
                line-height: 33px;
                margin: 0;
                vertical-align: top;
                text-align: center;
                width: 140px;
            }

    .page__content .m-card.ui-expiration-card .ui-time-zone-ct {
        margin-bottom: 0.5em;
        margin-top: 1em;
    }

    .page__content .m-card.ui-expiration-card input[type='checkbox'].ui-emails-check {
        margin-left: 0;
        width: unset;
    }

    .page__content .m-card.ui-expiration-card .form-item.form-item-receive-emails-checkbox label { width: 100% }

    .page__content .m-card.ui-expiration-card .form-type-textarea {
        background: #f8f9fa;
        border: 1px solid #eee;
        border-radius: 5px;        
        display: block;
        max-width: 920px;
        margin-left: 28px;
        padding: 15px 25px 25px 25px;
        width: auto;
    }

    .page__content .m-card.ui-expiration-card .ui-email-list { margin-left: 28px; }

    .form-type-textarea.form-item-receive-emails label::after {
        color: #E94F3D ;
        content: '*';
        margin-left: 4px;
        position: absolute;
    }

    .form-check input {
        cursor:pointer;
        opacity:0;
        position:absolute;
    }
    
    .form-check .fas.fa-check-square {
        background-color:#ffffff;
        border:1px solid #ced4da !important;
        border-radius:3px;
        height:18px;
        left:0px;
        position: absolute;
        pointer-events:none;
        top: 4px;
        transition:all 0.3s ease-out;
        -webkit-transition:all 0.3s ease-out;
        -moz-transition:all 0.3s ease-out;
        -ms-transition:all 0.3s ease-out;
        -o-transition:all 0.3s ease-out;
        width:18px;
    }
      
    .form-check input[type="checkbox"][disabled] ~ .fas.fa-check-square {
        background-color:#ffffff;
        border:1px solid #dfdfdf !important;
        border-radius:3px;
        opacity:1;
        -webkit-transform:rotate(0deg) scale(1);
        -ms-transform:rotate(0deg) scale(1);
        transform:rotate(0deg) scale(1);
    }
      
    .form-check .fas.fa-check-square::after {
        border:solid #009bff;
        border-radius:5px;
        border-width:0 3px 3px 0;
        content:"";
        height:0px;
        left:12px;
        opacity:1;
        position:absolute;
        top:13px;
        -webkit-transform:rotate(0deg) scale(0);
        -ms-transform:rotate(0deg) scale(0);
        transform:rotate(0deg) scale(0);
        width:0px;
    }
      
    .form-check input:checked ~ .fas.fa-check-square::after {
        background-color:transparent;
        border:solid rgba(0,0,0,0.7);
        border-radius:0;
        border-width:0 2px 2px 0;
        height:9px;
        left:6px;
        opacity:1;
        top:3px;
        -webkit-transform:rotate(45deg) scale(1);
        -ms-transform:rotate(45deg) scale(1);
        transform:rotate(45deg) scale(1);
        width:5px;
    }
      
    .form-check input[type="checkbox"][disabled]:checked ~ .fas.fa-check-square::after {
        background-color:transparent;
        border:solid #bbbbbb;
        border-radius:0;
        border-width:0 2px 2px 0;
        height:9px;
        left:6px;
        opacity:1;
        top:2px;
        -webkit-transform:rotate(45deg) scale(1);
        -ms-transform:rotate(45deg) scale(1);
        transform:rotate(45deg) scale(1);
        width:5px;
    }