@charset "utf-8";
@import url('https://use.fontawesome.com/releases/v6.4.2/css/all.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700&display=swap');

/* Reset CSS */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

* {
    box-sizing:border-box;
}

/* Base */
html {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
}

body {
    background-color: #fff;
    margin: 0;
    padding: 0;
}

.fixFullScreen {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100dvh;
    background-color: #FAFFFA;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
    z-index: 1000;
}

.fixFullScreen.is-hide {
    opacity: 0;
    visibility: hidden;
}

.fixFullScreen-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1.0rem;
}

#report:empty {
    display: none;
}

.basicLayout {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* min-height: 100dvh; */
    background-color: #FAFFFA;
}

.basicLayout-header {
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
}

.basicLayout-container,
.basicLayout-backlink,
.basicLayout-footer {
    position: relative;
    z-index: 10;
}

.basicLayout-container {
    display: flex;
    flex-direction: column;
    gap: 1.0rem;
    /* flex: 1; */
    width: 100%;
}

.basicLayout-backlink {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 1.0rem;
    border-top: 1px solid #f0f0f0;
}

.basicLayout-footer {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 1.0rem;
    border-top: 1px solid #f0f0f0;
    background-color: #fff;
}

.sectionWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.0rem;
    width: 100%;
    padding: 1.0rem;
}

.sectionWrapper:not(:first-child) {
    border-top: 1px solid #f0f0f0;
}

.contentWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loader-logo {
    display: block;
    width: 64%;
    max-width: 20.0rem;
}

.loader-logo img {
    display: block;
    width: 100%;
}

.loader-body {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.loader-icon {
    width: 1.0rem;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 0.15rem solid #999;
    animation:
        l20-1 0.8s infinite linear alternate,
        l20-2 1.6s infinite linear;
}

@keyframes l20-1{
    0%    {clip-path: polygon(50% 50%,0       0,  50%   0%,  50%    0%, 50%    0%, 50%    0%, 50%    0% )}
    12.5% {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100%   0%, 100%   0%, 100%   0% )}
    25%   {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100% 100%, 100% 100%, 100% 100% )}
    50%   {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100% 100%, 50%  100%, 0%   100% )}
    62.5% {clip-path: polygon(50% 50%,100%    0, 100%   0%,  100%   0%, 100% 100%, 50%  100%, 0%   100% )}
    75%   {clip-path: polygon(50% 50%,100% 100%, 100% 100%,  100% 100%, 100% 100%, 50%  100%, 0%   100% )}
    100%  {clip-path: polygon(50% 50%,50%  100%,  50% 100%,   50% 100%,  50% 100%, 50%  100%, 0%   100% )}
}

@keyframes l20-2{ 
    0%    {transform:scaleY(1)  rotate(0deg)}
    49.99%{transform:scaleY(1)  rotate(135deg)}
    50%   {transform:scaleY(-1) rotate(0deg)}
    100%  {transform:scaleY(-1) rotate(-135deg)}
}

.loader-text {
    color: #999;
    font-size: 1.0rem;
    font-weight: bold;
    line-height: 1;
}

.globalHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.5rem 1.0rem;
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
    box-shadow: 0 1px 0 0 #f0f0f0;
}

.globalHeader-main {
    display: flex;
    justify-content: flex-start;
}

.globalHeader-back,
.globalHeader-mypage {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.75rem;
    height: 1.75rem;
}

.globalHeader-anchor {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.75rem;
    height: 1.75rem;
    border: none;
    outline: none;
    background-color: transparent;
    text-decoration: none;
}

.globalHeader-anchor--circle {
    border: 1px solid #eaeaea;
    border-radius: 9999px;
    overflow: hidden;
}

.globalHeader-anchor-icon {
    color: #eaeaea;
    font-size: 1.5rem;
    line-height: 1;
}

.globalHeader-mypage .globalHeader-anchor-icon {
    transform: translateY(0.1rem);
}

.subHeader {
    width: 100%;
    padding: 0.5rem 1.0rem 0.5161rem;
    background-color: #fafafa;
    color: #001A0D;
    font-size: 1.0rem;
    font-weight: 500;
    line-height: 1.6;
}

.logo {
    display: block;
    width: 100%;
    max-width: 10.0rem;
}

.logo img {
    display: block;
    width: 100%;
}

.btn-primary,
.btn-secondary,
.btn-tertiary,
.btn-danger {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.0rem;
    border-radius: 4px;
    outline: none;
    border: 1px solid transparent;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 1.0rem;
    font-weight: 400;
    line-height: 1.6;
    text-decoration: none;
}

.btn-primary {
    background-color: #00BF63;
    border-color: #00BF63;
    color: #fff;
    font-weight: 500;
}

.btn-secondary {
    background-color: #fff;
    border-color: #00BF63;
    color: #00BF63;
    font-weight: 500;
}

.btn-tertiary {
    background-color: #fff;
    border-color: #fff;
    color: #001A0D;
}

.btn-danger {
    background-color: #BF1000;
    border-color: #BF1000;
    color: #fff;
    font-weight: 500;
}

.btn-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.0em;
    height: 1.0em;
    color: inherit;
    font-size: 1.0em;
}

.btn-text {
    display: block;
    color: inherit;
    font-size: inherit;
    padding-bottom: 0.052em;
}

.btn-primary:disabled,
.btn-secondary:disabled,
.btn-tertiary:disabled,
.btn-danger:disabled {
    background-color: #f0f0f0 !important;
    border-color: #f0f0f0 !important;
    color: #999 !important;
    font-weight: 500 !important;
}


.contentIndex {
    display: block;
    width: 100%;
    color: #001A0D;
    font-size: 1.0rem;
    font-weight: 500;
    line-height: 1.6;
}

.companyUserMenu {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    background-color: #fff;
    overflow: hidden;
}

.companyUserMenu-header {
    display: block;
    width: 100%;
    padding: 0.75rem 1.0rem;
    background-color: #eaeaea;
    color: #001A0D;
    font-size: 1.0rem;
    font-weight: 500;
    line-height: 1.6;
}

.companyUserMenu-body {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.listMenu {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
}

.listMenu.brdr{
    border: 1px solid #f0f0f0;
}

.listMenu.rds{
    border-radius: 4px;
    overflow: hidden;
}

.listMenu-item {
    display: flex;
    width: 100%;
}

.listMenu-item:not(:first-child) {
    border-top: 1px solid #f0f0f0;
}

.listMenu-index {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.0rem;
    background-color: #eaeaea;
    color: #001A0D;
    font-size: 1.0rem;
    font-weight: 500;
}

.listMenu-anchor {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    border: none;
    outline: none;
    padding: 1.0rem;
    color: #001A0D;
    font-size: 1.0rem;
    font-weight: 400;
    text-decoration: none;
    background-color: transparent;
}

.listMenu-anchor-icon,
.listMenu-anchor-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.0em;
    height: 1.0em;
    color: inherit;
    font-size: 1.0em;
}

.listMenu-anchor-text {
    display: flex;
    flex: 1;
}

.locationList {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.locationList-item {
    display: flex;
    flex-direction: column;
    gap: 1.0rem;
    width: 100%;
    padding: 1.0rem;
}

.locationList-item:not(:first-child) {
    border-top: 1px solid #f0f0f0;
}

.locationList-item--header {
    padding: 0.75rem 1.0rem;
    background-color: #eaeaea;
}

.locationList-value {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.locationList-value-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.0rem;
    width: 100%;
}

.locationList-btn {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.memberList {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.memberList-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.0rem;
    background-color: transparent;
    color: #001A0D;
    font-size: 1.0rem;
    font-weight: 400;
    line-height: 1.6;
}

.memberList-item:not(:first-child) {
    border-top: 1px solid #f0f0f0;
}

.memberList-name {
    display: flex;
    justify-content: flex-start;
    flex: 1;
}

.memberList-position {
    display: flex;
    justify-content: flex-end;
    width: 7em;
}

.memberList-item--header {
    background-color: #fafafa;
    font-weight: 500;
}

.permissionEdit {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.permissionEdit-member {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
}

.permissionEdit-position {
    color: #999999;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1;
}

.permissionEdit-name {
    color: #001A0D;
    font-size: 1.0rem;
    font-weight: 400;
    line-height: 1.6;
}

.permissionEdit-selector {
    display: flex;
    align-items: center;
}

.spotDetail-trigger {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.5rem 0.5rem 0.55rem 0.5rem;
    background-color: #fff;
    border-radius: 4px;
    color: #001A0D;
    font-size: 1.0rem;
    font-weight: 500;
    line-height: 1;
    border: none;
    outline: none;
}

.spotDetail-value {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    color: #001A0D;
    font-size: 1.0rem;
    font-weight: 400;
    line-height: 1.6;
}

.spotDetail-value-time {
    color: #999999;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1;
}

.form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
}

.form-inputGroup {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.form-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
}

.form-label {
    color: #001A0D;
    font-size: 1.0rem;
    font-weight: 500;
    line-height: 1.0;
}

.form-input {
    width: 100%;
    padding: 0.5rem 1.0rem;
    background-color: #fff;
    border-radius: 4px;
    border: none;
    outline: 1px solid #f0f0f0;
    color: #001A0D;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.0rem;
    font-weight: 400;
    line-height: 1.6;
}

.form-datetimeInput {
    width: 100%;
    padding: 0.5rem;
    background-color: #fff;
    border-radius: 4px;
    border: none;
    outline: 1px solid #f0f0f0;
    color: #001A0D;
    font-size: 1.0rem;
    font-weight: 500;
    line-height: 1.6;
}

.form-datetimeInput-input {
    width: 100%;
    padding: 0;
    background-color: #fff;
    border: none;
    outline: none;
    color: #001A0D;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.0rem;
    font-weight: 500;
    line-height: 1.6;
}

.form-select {
    width: 100%;
    height: 2.6rem;
    padding: 0.5rem 1.0rem;
    background-color: #fff;
    border-radius: 4px;
    border: none;
    outline: 1px solid #f0f0f0;
    color: #001A0D;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.0rem;
    font-weight: 400;
    line-height: 1.6;
}

.form-select--small {
    height: 2.2rem;
    font-size: 0.75rem;
}

.form-checkbox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 1.0rem;
}

.form-checkbox-input {
    display: none;
}

.form-checkbox-text {
    display: flex;
    align-items: center;
    flex: 1;
    padding-bottom: 0.052em;
    padding-left: 2.25rem;
    color: #001A0D;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.0rem;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
}

.form-checkbox-text:before {
    display: flex;
    justify-content: center;
    align-items: center;
    content: "\f00c";
    width: 1.5rem;
    height: 1.5rem;
    color: #fff;
    font-family: FontAwesome;
    font-size: 1.25rem;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    background-color: #fff;
    overflow: hidden;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.form-checkbox .form-checkbox-input[type=checkbox]:checked + .form-checkbox-text:before {
    background-color: #00BF63;
    border-color: #00BF63;
}

.spotList {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.spotList-item {
    display: flex;
    align-items: center;
    gap: 0.25em;
    width: 100%;
    padding: 0.5rem;
    background-color: #fff;
}

.spotList-item:not(:first-child) {
    border-top: 1px dashed #eaeaea;
}

.spotDetail {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
}

.spotDetail-day {
    display: block;
    width: 2.6rem;
    padding: 0.5rem 0.25rem 0.55rem;
    background-color: #F0F0F0;
    border-radius: 4px;
    color: #001A0D;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.0rem;
    text-align: center;
}

.spotDetail-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    padding: 0.5rem;
    background-color: #F0FFF9;
}

.spotDetail-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    width: 100%;
}

.spotDetail-index {
    display: block;
    width: 100%;
    color: #001A0D;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.6;
}

.spotDetail-trigger {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.5rem 0.5rem 0.55rem 0.5rem;
    background-color: #fff;
    border-radius: 4px;
    color: #001A0D;
    font-size: 1.0rem;
    font-weight: 500;
    line-height: 1;
    border: none;
    outline: none;
}

.spotDetail-trigger:after {
    display: block;
    content: "\f044";
    font-family: FontAwesome;
    color: #00BF63;
    font-size: 1.0rem;
    line-height: 1.6;
}

.spotDetail-value {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    color: #001A0D;
    font-size: 1.0rem;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
}

.spotDetail-value-time {
    color: #999999;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1;
}

.spotDetail-spotList {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.spotDetail-spotItem {
    border-radius: 0;
}

.spotDetail-spotItem:not(:first-of-type) {
    border-top: 1px dashed #eaeaea;
}

.spotDetail-price {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem;
    background-color: #FFF7F0;
    border-radius: 4px;
    color: #E56B00;
    font-size: 1.0rem;
    font-weight: 400;
    line-height: 1;
}

.spotDetail-none {
    display: flex;
    flex: 1;
    padding: 0.5rem 0.5rem 0.55rem 0.5rem;
    background-color: #FAFAFA;
    color: #BBBBBB;
    font-size: 1.0rem;
    font-weight: 400;
    line-height: 1;
}

.p-popup {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}
.p-popup.is-active {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
}
.p-popup.is-hide {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
}
.p-popup-overlay {
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
}
.p-popup-overlay.is-active {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
}
.p-popup-overlay.is-hide {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
}
.p-popup-loading {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 10;
}
.p-popup-container {
    display: block;
    width: calc(100% - 2.0rem);
    padding: 1rem 1rem;
    border-radius: 4px;
    border: 1px solid #00BF63;
    background-color: #fff;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
        -ms-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
    z-index: 20;
}
.p-popup-container.is-active {
    -webkit-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    -webkit-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
}
.p-popup-container.is-hide {
    -webkit-transform: translate(-50%, -50%) scale(0);
        -ms-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
    -webkit-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
}
.p-popup-container--error {
    border-color: #BF1000;
}

@keyframes l3 {
    to {
      -webkit-transform: rotate(1turn);
              transform: rotate(1turn);
    }
}

.textIndex {
    color: #001A0D;
    font-size: 1.0rem;
    font-weight: 500;
    line-height: 1.6;
}

.textValue {
    color: #555;
    font-size: 1.0rem;
    font-weight: 400;
    line-height: 1.6;
}

.error {
    display: flex;
    align-items: flex-start;
    gap: 0.25rem;
    width: 100%;
    padding: 0.75rem 1.0rem;
    background-color: #FFFAFA;
    border-radius: 4px;
}

.error:before {
    content: "\f06a";
    font-family: FontAwesome;
    color: #BF1000;
    font-size: 1.0rem;
    line-height: 1.6;
    transform: translateY(-0.2em);
}

.error-text {
    display: flex;
    flex: 1;
    padding-bottom: 0.052em;
    color: #BF1000;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.6;
}

.copyright {
    color: #555;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1;
}

#pdf-viewer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    overflow: hidden;
}

#pdf-viewer canvas {
    display: block;
    width: 100%;
    border: 1px solid #eaeaea;
}

.c-blockFlexColumn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
}
.c-blockFlexColumn.gap {
    gap: 1rem;
}
.c-blockFlexColumn.gap-s {
    gap: 0.5rem;
}
.c-blockFlexColumn.gap-l {
    gap: 2rem;
}
.c-blockFlexColumn.center {
    align-items: center;
}

.c-actionLoaderIcon {
    width: 4rem;
    padding: 0.5rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff;
    --_m:
        conic-gradient(#0000 10%,#000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    -webkit-animation: actionLoaderRotate 1s infinite linear;
            animation: actionLoaderRotate 1s infinite linear;
}

@-webkit-keyframes actionLoaderRotate {
    to {
        -webkit-transform: rotate(1turn);
                transform: rotate(1turn);
    }
}
  
@keyframes actionLoaderRotate {
    to {
        -webkit-transform: rotate(1turn);
                transform: rotate(1turn);
    }
}

.u-txtBold {
    font-weight: 500;
}

.u-txtColorPrimary {
    color: #00BF63;
}
.u-txtColorError {
    color: #BF1000;
}
