<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">  /**************************\
    Basic Modal Styles
  \**************************/
  body.sw-overflow-hidden {
    overflow: hidden;
  }

  #modal-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #212121;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    right: -27px;
    top: -27px;
    z-index: 999 !important;
  }

  .sw-airtable-record-editor-modal.modal {
    font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
  }

  .sw-airtable-record-editor-modal .modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sw-airtable-record-editor-modal .modal__container {
    background-color: #fff;
    position: relative;
    padding: 40px 6px 40px 0;
    width: 600px;
    max-height: 85vh;
    min-height: 480px;
    border-radius: 4px;
    overflow-y: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .sw-airtable-record-editor-modal .modal__content::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    border-radius: 8px;
  }

  .sw-airtable-record-editor-modal .modal__content::-webkit-scrollbar-thumb {
    background-color: rgba(102, 102, 102, 0.5);
    border-radius: 20px;
    transition: all .2s linear;
    cursor: pointer;
  }

  .sw-airtable-record-editor-modal .modal__content::-webkit-scrollbar-track {
    background: #ddd;
    border-radius: 20px;
  }

  .sw-airtable-record-editor-modal .modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
  }

  .sw-airtable-record-editor-modal .modal__title {
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
    color: #383B3D;
  }

  .sw-airtable-record-editor-modal .modal__close {
    background: transparent;
    border: 0;
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background-image: url("https://assets.softr-files.com/applications/655b1918-5c7b-4573-9765-fa72e9895aef/assets/95281ab6-c67e-4f9a-bf6c-65e1f8e98559.svg");
  }

  .sw-airtable-record-editor-modal .modal__close:focus {
    outline: none;
  }

  .sw-airtable-record-editor-modal .modal__close:hover {
    background-image: url("https://assets.softr-files.com/applications/655b1918-5c7b-4573-9765-fa72e9895aef/assets/857b82bb-ca81-4d59-be6d-ffb406936e23.svg");
  }

  .sw-airtable-record-editor-modal .modal__content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    max-height: 45vh;
    min-height: 170px!important;
    overflow: auto;
    line-height: 1.5;
    color: rgba(0, 0, 0, .8);
    padding: 0 40px;
  }

  .sw-airtable-record-editor-modal .modal__content .sw-form-element {
    margin-bottom: 16px;
  }

  /*INPUT, TEXTAREA, DATE*/
  .sw-airtable-record-editor-modal .modal__container .sw-error-tag {
    display: flex;
    align-items: center;
    max-width: 400px;
    background: #FCEFEF;
    border-radius: 12px;
    padding: 12px 16px;
    margin: 16px auto;
  }

  .sw-airtable-record-editor-modal .modal__container .sw-error-tag .sw-tag-description {
    font-weight: normal;
    font-size: 13px;
    line-height: 22px;
    color: #212121;
    margin-left: 16px;
  }

  .sw-airtable-record-editor-modal .modal__content .sw-input.url-error input,
  .sw-airtable-record-editor-modal .modal__content .sw-input.email-error input {
    border: 1px solid #E25B5B!important;
    box-shadow: none !important;
  }

  .sw-airtable-record-editor-modal .modal__content .sw-input.email-error:after {
    content: 'Invalid email';
    color: #E25B5B;
    font-size: 13px;
  }

  .sw-airtable-record-editor-modal .modal__content .sw-input.url-error:after {
    content: 'Invalid URL';
    color: #E25B5B;
    font-size: 13px;
  }

  .sw-airtable-record-editor-modal .modal__content .sw-input input,
  .sw-airtable-record-editor-modal .modal__content .sw-textarea textarea,
  .sw-airtable-record-editor-modal .sw-date input {
    width: 100%;
    background: #FAFAFC;
    border: 1px solid #F0F0F4;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 8px 16px;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 22px;
    color: #212121;
  }

  .sw-airtable-record-editor-modal .modal__content .sw-input input:focus,
  .sw-airtable-record-editor-modal .modal__content .sw-textarea textarea:focus,
  .sw-airtable-record-editor-modal .modal__content .sw-date input:focus {
    outline: none;
    border: 1px solid #719DDD;
    box-shadow: 0 0 0 2px #EDF3FB
  }

  .sw-airtable-record-editor-modal .modal__content .sw-input input:hover,
  .sw-airtable-record-editor-modal .modal__content .sw-textarea textarea:hover,
  .sw-airtable-record-editor-modal .modal__content .sw-date input:hover {
    outline: none;
    border: 1px solid #C9DAF2;
  }

  .sw-airtable-record-editor-modal .modal__content .sw-linked-record .sw-linked-record-label,
  .sw-airtable-record-editor-modal .modal__content .sw-input .sw-input-label,
  .sw-airtable-record-editor-modal .modal__content .sw-rating-container .sw-rating-label,
  .sw-airtable-record-editor-modal .modal__content .sw-textarea .sw-input-label,
  .sw-airtable-record-editor-modal .modal__content .sw-dropdown .sw-dropdown-label,
  .sw-airtable-record-editor-modal .modal__content .sw-date .sw-date-label,
  .sw-airtable-record-editor-modal .modal__content .sw-date-time .sw-date-label,
  .sw-airtable-record-editor-modal .modal__content .sw-file-upload .sw-upload-label {
    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    line-height: 19px;
    color: #5A5D63;
    margin-bottom: 8px;
  }
  /*SELECTIZE DROPDOWN*/
  .selectize-dropdown-content{
    max-height: 100px;
  }
  .selectize-dropdown{
    width: 100%!important;
    z-index: 99!important;
  }
  .selectize-dropdown .description{
    font-size: 13px;
    padding: 4px 8px;
  }

  .selectize-input {
    display: inline-block!important;
    width: 100%!important;
    overflow: hidden!important;
    position: relative!important;
    z-index: 1!important;
    box-sizing: border-box!important;
    background: #FAFAFC!important;
    border: 1px solid #F0F0F4!important;
    border-radius: 8px!important;
    padding: 4px 16px 1px!important;
    font-size: 13px!important;
    line-height: 22px!important;
    color: #212121!important;
    min-height: 40px!important;
  }
  .selectize-control.multi .selectize-input&gt;div,
  .selectize-control.multi .selectize-input&gt;div.active{
    position: relative;
    background: #FCEED9!important;
    color: #28192D!important;;
    border-radius: 8px!important;
    padding: 1px 5px 1px 10px!important;
    margin: 2px!important;
  }
  .selectize-input.full{
    display: flex!important;
    align-items: center;
    margin: 0!important;
    padding-top: 2px!important;
    position: relative!important;
    box-shadow: none!important;
  }

  .selectize-input.not-full{
    box-shadow: none!important;
  }

  .selectize-input.full &gt; span{
    position: relative!important;
    background: #FCEED9!important;
    color: #28192D!important;
    border-radius: 8px!important;
    padding: 2px 25px 2px 10px!important;
    margin-right: 4px!important;
  }

  .selectize-control.plugin-remove_button .remove-single{
    font-size: 11px!important;
    right: 6px!important;
    top: 1px!important;
  }
  .selectize-control.plugin-remove_button .item .remove{
    border: none!important;
  }
  .selectize-control.single .selectize-input:after{
    display: none!important;
  }
  .container__months{
    overflow: initial!important;
  }

  .container__months .dropdown.bootstrap-select{
    width: 100px!important;
    position: relative;
    left: 8px;
    top: -1px;
  }

  .container__months .dropdown-menu{
    height: 150px;
  }

  /*CHECKBOX*/
  .sw-airtable-record-editor-modal .modal__content .checkbox-container {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 22px;
  }

  .sw-airtable-record-editor-modal .modal__content .checkbox-container:hover .checkmark {
    border: 1px solid #C9DAF2;
  }

  .sw-airtable-record-editor-modal .modal__content .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  .sw-airtable-record-editor-modal .modal__content .checkmark {
    background-color: #fff;
  }

  .sw-airtable-record-editor-modal .modal__content .checkbox-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    border: solid #212121;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .sw-airtable-record-editor-modal .modal__content .checkbox-container input:checked ~ .checkmark:after {
    display: block;
  }

  .sw-airtable-record-editor-modal .modal__content .checkbox-container .sw-checkbox-m {
    height: 24px;
    width: 24px;
    padding: 0;
    background: #FFFFFF;
    border: 1px solid #E5E5EA;
    box-sizing: border-box;
    border-radius: 4px;
  }

  .sw-airtable-record-editor-modal .modal__content .checkbox-container .sw-checkbox-m:after {
    left: 8px;
    top: 2px;
    width: 7px;
    height: 14px;
  }

  .sw-airtable-record-editor-modal .modal__content .checkbox-container .sw-checkbox-m:after {
    left: 8px;
    top: 3px;
    width: 6px;
    height: 13px;
  }

  .sw-airtable-record-editor-modal .modal__content .checkbox-container .sw-checkbox-label {
    display: inline-block;
    margin-left: 16px;
    font-weight: normal;
    font-size: 11px;
    line-height: 20px;
    color: #383B3D;
  }

  /*CHECKBOX END*/

  /*SELECT, MULTISELECT*/

  .sw-airtable-record-editor-modal .modal__content .bootstrap-select .dropdown-toggle:focus,
  .sw-airtable-record-editor-modal .modal__content .bootstrap-select &gt; select.mobile-device:focus + .dropdown-toggle {
    box-shadow: none !important;
    outline: none !important;
  }

  .sw-airtable-record-editor-modal .modal__content .bootstrap-select .btn:focus {
    outline: none !important;
  }

  .sw-airtable-record-editor-modal .modal__content .bootstrap-select .btn-light {
    background: #FAFAFC!important;
    border: 1px solid #F0F0F4!important;
    box-sizing: border-box!important;
    border-radius: 8px!important;
    height: 40px!important;
    font-size: 13px!important;
    display: flex!important;
    padding-top: 10px!important;
    position: unset!important;
    top: unset!important;
    bottom: unset!important;
  }

  .sw-airtable-record-editor-modal .modal__content .sw-time-input.bootstrap-select .btn-light {
    border: none!important;
  }

  .sw-airtable-record-editor-modal .modal__content .bootstrap-select .btn-light:after {
    content: '';
    border: 0;
    width: 16px;
    height: 16px;
    background: url("https://softr-assets-eu-shared.s3.eu-central-1.amazonaws.com/studio/blocks/assets/chevron-down-small.svg");
  }

  .sw-airtable-record-editor-modal .modal__content .bootstrap-select div.dropdown-menu {
    width: 100%;
  }

  .sw-airtable-record-editor-modal .modal__content .bootstrap-select div.dropdown-menu li span.text {
    white-space: pre-wrap!important;
  }

  .sw-airtable-record-editor-modal .modal__content .bootstrap-select div.dropdown-menu div.show {
    transform: none !important;
  }

  .sw-airtable-record-editor-modal .modal__content .bootstrap-select .dropdown-menu {
    font-size: 13px;
  }

  .sw-airtable-record-editor-modal .modal__content .bootstrap-select .dropdown-menu.inner {
    font-size: inherit;

  }

  .sw-airtable-record-editor-modal .modal__content .sw-dropdown .dropdown .dropdown-menu.show{
    transform: none!important;
    margin-top: 40px!important;
  }

  .sw-airtable-record-editor-modal .modal__content .sw-dropdown .dropdown .dropdown-menu.show .inner{
    overscroll-behavior: contain!important;
    margin-top: 0 !important;
  }

  .sw-airtable-record-editor-modal .modal__content .sw-dropdown .dropdown .dropdown-menu.show .inner .empty-field:hover {
    background-color: #e0dddd54!important;
  }

  .sw-airtable-record-editor-modal .modal__content .bootstrap-select .dropdown-item.active,
  .sw-airtable-record-editor-modal .modal__content .dropdown-item:active {
    color: #000000;
    text-decoration: none;
    background-color: #ffffff;
  }

  .sw-airtable-record-editor-modal .modal__content .bootstrap-select .dropdown-item:focus {
    outline: none;
    border: none;
  }

  .sw-airtable-record-editor-modal .modal__content select::-ms-expand {
    display: none;
  }

  .sw-airtable-record-editor-modal .modal__content .bootstrap-select {
    width: 100% !important;
  }

  .sw-airtable-record-editor-modal .modal__content select {
    text-indent: 1px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 2px 2px 2px 2px;
    border: none;
    background: url("https://softr-assets-eu-shared.s3.eu-central-1.amazonaws.com/studio/blocks/assets/chevron-down-small.svg") transparent no-repeat calc(100% - 10px) !important;
  }

  .sw-airtable-record-editor-modal .modal__content .modal__content .bootstrap-select &gt; .dropdown-toggle.bs-placeholder,
  .sw-airtable-record-editor-modal .modal__content .modal__content .bootstrap-select &gt; .dropdown-toggle.bs-placeholder:active,
  .sw-airtable-record-editor-modal .modal__content .modal__content .bootstrap-select &gt; .dropdown-toggle.bs-placeholder:focus,
  .sw-airtable-record-editor-modal .modal__content .modal__content .bootstrap-select &gt; .dropdown-toggle.bs-placeholder:hover {
    color: #212529;
  }

  /*SELECT MULTISELECT END*/

  /*RATING*/

  .sw-rating-star-container {
    margin-bottom: 16px;
    display: inline-flex!important;
  }

  .sw-rating-container &gt; div {
    flex-direction: row-reverse;
  }

  .sw-rating-container &gt; div &gt; span.fa-star {
    color: #FFA500!important;
    cursor: pointer;
    margin-right: 3px;
    opacity: 0.3!important;
  }

  .sw-rating-container &gt; div &gt; span.checked,
  .sw-rating-container &gt; div &gt; span:hover.fa.fa-star,
  .sw-rating-container &gt; div &gt; span:hover.fa.fa-star  ~ span.fa.fa-star {
    opacity: 1!important;
  }
  /*RATING END*/

  /*DATE, DATETIME*/

  .sw-airtable-record-editor-modal .sw-time-input.prevent-click {
    pointer-events: none;
    opacity: 0;
    width: 0;
  }

  .sw-airtable-record-editor-modal .sw-date-field {
    background: #FAFAFC;
    border: 1px solid #F0F0F4;
    box-sizing: border-box;
    border-radius: 8px;
    height: 40px;
    font-size: 13px;
    display: flex;
  }

  .sw-airtable-record-editor-modal .sw-date-field .bootstrap-select &gt; .dropdown-toggle:after {
    display: none;
  }

  .sw-airtable-record-editor-modal .sw-date-field .filter-option {
    height: 21px;
  }

  .sw-airtable-record-editor-modal .sw-date-field .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    text-align: center;
  }

  .sw-airtable-record-editor-modal .sw-date-field {
    display: flex !important;
    justify-content: flex-start;
  }

  .sw-airtable-record-editor-modal .sw-date-input {
    border-color: transparent !important;
    flex: 3;
    background: transparent;
    padding-left: 14px;
  }

  .sw-airtable-record-editor-modal .sw-date-input:focus {
    outline: none;
  }

  .sw-airtable-record-editor-modal .sw-time-input {
    flex: 1;
  }

  .sw-airtable-record-editor-modal .sw-time-input.prevent-click {
    pointer-events: none;
    opacity: 0;
    width: 0;
  }

  .sw-airtable-record-editor-modal .modal__content .sw-date-field .bootstrap-select .btn-light {
    background: transparent;
    border: none;
    height: 40px;
    font-size: 13px;
    display: flex;
    padding-top: 7px;
  }


  .sw-airtable-record-editor-modal .modal__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px 0 40px;
  }

  .sw-airtable-record-editor-modal .modal__btn:focus {
    outline: none;
  }

  .sw-airtable-record-editor-modal .modal__btn-primary {
    background: #28192D;
    border-radius: 8px;
    color: #fff;
    width: 245px;
    height: 40px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sw-airtable-record-editor-modal .modal__btn-primary.invalid {
    pointer-events: none;
    opacity: .5;
  }

  .sw-airtable-record-editor-modal .modal__btn-primary:hover,
  .sw-airtable-record-editor-modal .modal__btn-secondary:hover {
    box-shadow: 0px 2px 8px rgba(40, 25, 45, 0.08), 0px 3px 8px rgba(40, 25, 45, 0.04);
  }

  .sw-airtable-record-editor-modal .modal__btn-primary.loading {
    font-size: 0;
    pointer-events: none;
  }

  .sw-airtable-record-editor-modal .modal__btn-primary.loading::after {
    display: block;
    content: ' ';
    background-image: url('https://assets.softr-files.com/applications/655b1918-5c7b-4573-9765-fa72e9895aef/assets/6e90b21e-94f5-4c58-90bb-26a7c8701fa0.svg');
    background-size: 16px;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
  }

  .sw-airtable-record-editor-modal .modal__btn-secondary {
    background: #FFFFFF;
    border: 1px solid #E5E5EA;
    border-radius: 8px;
    color: #28192D;
    width: 245px;
    height: 40px;
  }

  .sw-airtable-record-editor-modal .CodeMirror {
    height: 200px !important;
    min-height: 200px !important;
  }

  /**************************\
    File Upload
  \**************************/

  .sw-airtable-record-editor-modal .drag .upload-header {
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.71;
    letter-spacing: normal;
    color: #adadad;
  }

  .sw-airtable-record-editor-modal .drag .upload-header i {
    color: #373737;
  }

  .sw-airtable-record-editor-modal .drag-file-area {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    position: relative;
    border: dashed 1px #e5e5ea;
    background-color: rgba(255, 255, 255, 0.04);
    margin: 12px 0;
    border-radius: 8px;
    font-weight: bold;
  }

  .sw-airtable-record-editor-modal .drag-file-area:hover {
    border: dashed 1px #F6D4A0;
    background: rgba(252, 238, 217, 0.4);
  }

  .sw-airtable-record-editor-modal .drag-file-area div.icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-right: 8px;
    background-image: url("https://assets.softr-files.com/applications/04555f4b-5d1a-4213-97ab-f8e1099c17b5/assets/4194c78d-8cd2-49d9-8dea-23ebc35f4f91.svg");
  }

  .sw-airtable-record-editor-modal .drag-file-area:hover div.icon {
    background-image: url("https://assets.softr-files.com/applications/b65381b8-b172-4cf5-806a-351b848abb0b/assets/980092fb-b9a2-448a-9d05-2e30caba7ff8.svg");
  }

  .sw-airtable-record-editor-modal .browse-link:focus {
    outline: none;
  }


  .sw-airtable-record-editor-modal .drag-file-area .drag-text {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: #adadad;
    padding: 28px 0;
  }

  .sw-airtable-record-editor-modal .drag-file-area:hover .drag-text {
    color: #28192D;
  }

  .sw-airtable-record-editor-modal .file-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
  }

  .sw-airtable-record-editor-modal .browse-link {
    font-weight: 600;
    font-size: 11px;
    line-height: 19px;
    display: flex;
    align-items: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #AEAEB5;
    cursor: pointer;
  }


  .sw-airtable-record-editor-modal .file-list {
    margin: 12px 0;
    flex: 1;
    overflow: auto;
    list-style-type: none;
    padding: 28px 0;
    border: dashed 1px #979797;
    flex-flow: wrap;
  }

  .sw-airtable-record-editor-modal .file-list li {
    color: #adadad;
    position: relative;
    padding: 0 12px;
    margin-bottom: 16px;
    overflow: hidden;
    width: 95px;
  }

  .sw-airtable-record-editor-modal .file-list li:hover .delete {
    display: block;
  }

  .sw-airtable-record-editor-modal .file-list li div {
    display: flex;
    justify-content: space-between;
  }

  .sw-airtable-record-editor-modal .file-list li span.file-name {
    width: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
    white-space: nowrap;
    font-size: 10px;
    font-weight: 300;
    display: block;
    margin-top: 4px;
  }

  .sw-airtable-record-editor-modal .file-list li .sw-js-image-box {
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: contain;
    border: 1px dashed #F0F0F4;
    border-radius: 8px;
    background-position: center;
  }

  .sw-airtable-record-editor-modal .delete {
    display: none;
    position: absolute;
    right: 5px;
    top: -4px;
    padding: 5px;
    color: #373737;
    text-align: center;
    line-height: 15px;
    z-index: 1;
    cursor: pointer;
    font-size: 12px;
  }

  @media screen and (max-width: 576px) {
    .sw-airtable-record-editor-modal .modal__btn-primary,
    .sw-airtable-record-editor-modal .modal__btn-secondary {
      width: 110px;
    }
  }

  /**************************\
    Demo Animation Style
  \**************************/
  @keyframes mmfadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes mmfadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }

  @keyframes mmslideIn {
    from {
      transform: translateY(15%);
    }
    to {
      transform: translateY(0);
    }
  }

  @keyframes mmslideOut {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(-10%);
    }
  }

  .micromodal-slide {
    display: none;
  }

  .micromodal-slide.is-open {
    display: block;
  }

  .micromodal-slide[aria-hidden="false"] .modal__overlay {
    animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
  }

  .micromodal-slide[aria-hidden="false"] .modal__container {
    animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
  }

  .micromodal-slide[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
  }

  .micromodal-slide[aria-hidden="true"] .modal__container {
    animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
  }

  .micromodal-slide .modal__container,
  .micromodal-slide .modal__overlay {
    will-change: transform;
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
</pre></body></html>