@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap);/* Fonts */

.v-select {
  position: relative;
  font-family: inherit;
}

.v-select, .v-select * {
  box-sizing: border-box;
}

@-webkit-keyframes vSelectSpinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

@keyframes vSelectSpinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

.vs__fade-enter-active, .vs__fade-leave-active {
  -webkit-transition: opacity 0.15s cubic-bezier(1, 0.5, 0.8, 1);
  transition: opacity 0.15s cubic-bezier(1, 0.5, 0.8, 1);
}

.vs__fade-enter, .vs__fade-leave-to {
  opacity: 0;
}

.vs--disabled .vs__clear, .vs--disabled .vs__dropdown-toggle, .vs--disabled .vs__open-indicator, .vs--disabled .vs__search, .vs--disabled .vs__selected {
  cursor: not-allowed;
  background-color: #f8f8f8;
}

.v-select[dir=rtl] .vs__actions {
  padding: 0 3px 0 6px;
}

.v-select[dir=rtl] .vs__clear {
  margin-left: 6px;
  margin-right: 0;
}

.v-select[dir=rtl] .vs__deselect {
  margin-left: 0;
  margin-right: 2px;
}

.v-select[dir=rtl] .vs__dropdown-menu {
  text-align: right;
}

.vs__dropdown-toggle {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -webkit-box;
  display: flex;
  padding: 0 0 4px;
  background: none;
  border: 1px solid rgba(60, 60, 60, 0.26);
  border-radius: 4px;
  white-space: normal;
}

.vs__selected-options {
  display: -webkit-box;
  display: flex;
  flex-basis: 100%;
  -webkit-box-flex: 1;
          flex-grow: 1;
  flex-wrap: wrap;
  padding: 0 2px;
  position: relative;
}

.vs__actions {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding: 4px 6px 0 3px;
}

.vs--searchable .vs__dropdown-toggle {
  cursor: text;
}

.vs--unsearchable .vs__dropdown-toggle {
  cursor: pointer;
}

.vs--open .vs__dropdown-toggle {
  border-bottom-color: transparent;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.vs__open-indicator {
  fill: rgba(60, 60, 60, 0.5);
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: -webkit-transform 0.15s cubic-bezier(1, -0.115, 0.975, 0.855);
  -webkit-transition: -webkit-transform 0.15s cubic-bezier(1, -0.115, 0.975, 0.855);
  transition: transform 0.15s cubic-bezier(1, -0.115, 0.975, 0.855);
  transition: transform 0.15s cubic-bezier(1, -0.115, 0.975, 0.855), -webkit-transform 0.15s cubic-bezier(1, -0.115, 0.975, 0.855);
  -webkit-transition-timing-function: cubic-bezier(1, -0.115, 0.975, 0.855);
          transition-timing-function: cubic-bezier(1, -0.115, 0.975, 0.855);
}

.vs--open .vs__open-indicator {
  -webkit-transform: rotate(180deg) scale(1);
  transform: rotate(180deg) scale(1);
}

.vs--loading .vs__open-indicator {
  opacity: 0;
}

.vs__clear {
  fill: rgba(60, 60, 60, 0.5);
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  margin-right: 8px;
}

.vs__dropdown-menu {
  display: block;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 1000;
  padding: 5px 0;
  margin: 0;
  width: 100%;
  max-height: 350px;
  min-width: 160px;
  overflow-y: auto;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(60, 60, 60, 0.26);
  border-top-style: none;
  border-radius: 0 0 4px 4px;
  text-align: left;
  list-style: none;
  background: #fff;
}

.vs__no-options {
  text-align: center;
}

.vs__dropdown-option {
  line-height: 1.42857143;
  display: block;
  padding: 3px 20px;
  clear: both;
  color: #333;
  white-space: nowrap;
}

.vs__dropdown-option:hover {
  cursor: pointer;
}

.vs__dropdown-option--highlight {
  background: #5897fb;
  color: #fff;
}

.vs__selected {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  background-color: #f0f0f0;
  border: 1px solid rgba(60, 60, 60, 0.26);
  border-radius: 4px;
  color: #333;
  line-height: 1.4;
  margin: 4px 2px 0;
  padding: 0 0.25em;
}

.vs__deselect {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-left: 4px;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
  fill: rgba(60, 60, 60, 0.5);
  text-shadow: 0 1px 0 #fff;
}

.vs--single .vs__selected {
  background-color: transparent;
  border-color: transparent;
}

.vs--single.vs--open .vs__selected {
  position: absolute;
  opacity: 0.4;
}

.vs--single.vs--searching .vs__selected {
  display: none;
}

.vs__search::-ms-clear, .vs__search::-webkit-search-cancel-button, .vs__search::-webkit-search-decoration, .vs__search::-webkit-search-results-button, .vs__search::-webkit-search-results-decoration {
  display: none;
}

.vs__search, .vs__search:focus {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 1.4;
  font-size: 1em;
  border: 1px solid transparent;
  border-left: none;
  outline: none;
  margin: 4px 0 0;
  padding: 0 7px;
  background: none;
  box-shadow: none;
  width: 0;
  max-width: 100%;
  -webkit-box-flex: 1;
          flex-grow: 1;
}

.vs__search::-webkit-input-placeholder {
  color: inherit;
}

.vs__search:-ms-input-placeholder {
  color: inherit;
}

.vs__search::-ms-input-placeholder {
  color: inherit;
}

.vs__search::-moz-placeholder {
  color: inherit;
}

.vs__search::placeholder {
  color: inherit;
}

.vs--unsearchable .vs__search {
  opacity: 1;
}

.vs--unsearchable .vs__search:hover {
  cursor: pointer;
}

.vs--single.vs--searching:not(.vs--open):not(.vs--loading) .vs__search {
  opacity: 0.2;
}

.vs__spinner {
  align-self: center;
  opacity: 0;
  font-size: 5px;
  text-indent: -9999em;
  overflow: hidden;
  border: 0.9em solid hsla(0, 0%, 39.2%, 0.1);
  border-left-color: rgba(60, 60, 60, 0.45);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: vSelectSpinner 1.1s linear infinite;
  animation: vSelectSpinner 1.1s linear infinite;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}

.vs__spinner, .vs__spinner:after {
  border-radius: 50%;
  width: 5em;
  height: 5em;
}

.vs--loading .vs__spinner {
  opacity: 1;
}

.pagination {
  display: -webkit-box;
  display: flex;
  padding-left: 0;
  -webkit-box-pack: center;
          justify-content: center;
  list-style: none;
  margin-top: 2%;
  border-radius: 1rem;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #3490dc;
  border-color: #3490dc;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #3490dc;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

/*
//
  INDEX ::
  PRESETS
  SIDEBAR MENU
  HEADER
  TABLE
  COMPONENTS
//
*/

/*
//
  PRESETS
//
*/

* {
  vertical-align: baseline;
  font-weight: inherit;
  font-family: inherit;
  font-style: inherit;
  font-size: 100%;
  border: 0 none;
  outline: 0;
  padding: 0;
  margin: 0;
  font-family: "Source Sans Pro";
  font-size: 1rem;
  font-weight: 500;
}

button {
  cursor: pointer;
}

label {
  font-size: 0.75rem;
  color: #3182ce;
  display: block;
  font-weight: 700;
  margin-left: 0.25rem;
}

input.bg-blue-200::-webkit-input-placeholder {
  color: #3182ce;
}

input.bg-blue-200::-moz-placeholder {
  color: #3182ce;
}

input.bg-blue-200:-ms-input-placeholder {
  color: #3182ce;
}

input.bg-blue-200::-ms-input-placeholder {
  color: #3182ce;
}

input.bg-blue-200::placeholder {
  color: #3182ce;
}

/*
//
  SIDEBAR MENU
//
*/

.sidebar .item {
  padding: 15px 0px 15px 20px;
  background-color: white;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.sidebar .item.active {
  background-color: #F1F9FF;
  border-left: 7px solid #2699FB;
}

.sidebar .item.active span {
  color: #3490dc;
  font-weight: bold;
}

.sidebar .item:hover, .sidebar .item:active {
  background-color: #F1F9FF;
  border-left: 7px solid #2699FB;
}

.sidebar .item:hover span, .sidebar .item:active span {
  color: #3490dc;
}

.sidebar .item span {
  color: #F79541;
}

.sidebar .item span i {
  margin-right: 10px;
}

@media screen and (min-width: 768px) {
  .sidebar {
    max-width: 260px;
  }

  .sidebar .logo {
    text-align: center;
    margin: 20px 0px 50px 0px;
  }

  .sidebar .logo img {
    max-width: 200px;
  }

  .sidebar .menu .item, .sidebar .menu .item * {
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }
}

@media screen and (max-width: 768px) {
  .sidebar .logo {
    text-align: left;
    padding: 20px;
  }

  .sidebar .logo img {
    max-width: 200px;
  }
}

.toggle-btn {
  position: absolute;
  top: 30px;
  right: 20px;
  cursor: pointer;
}

/*
//
  HEADER
//
*/

.h70 {
  height: 70px;
}

/*
//
  TABLE
//
*/

tr {
  border-left-width: 4px;
  border-style: solid;
  border-color: #fff;
}

@media screen and (min-width: 1024px) {
  tr {
    border-width: 0;
  }
}

tr:nth-child(even) {
  background-color: #f7fafc;
}

tr:nth-child(odd) {
  background: #FFF;
}

tr.white {
  background-color: white !important;
}

tr th {
  text-align: left;
  border-style: solid;
  border-bottom-width: 4px;
  border-color: #e2e8f0;
  padding-top: 2rem;
  padding-bottom: 0.75rem;
  font-weight: 600;
}

tr td {
  font-size: 0.875rem;
  vertical-align: middle;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

tr th:first-child, tr td:first-child {
  padding-left: 1rem;
}

tr th:last-child, tr td:last-child {
  padding-right: 1rem;
}

.item-statut {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 9999px;
  color: #fff;
  max-width: 50%;
  text-align: center;
}

.btn-action-default {
  background-color: #edf2f7;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  border-radius: 0.25rem;
  border-width: 1px;
  border-style: solid;
  border-color: #a0aec0;
}

.btn-action-default:hover {
  background-color: #cbd5e0;
}

.actions-menu {
  top: 30px;
  right: 0px;
  position: absolute;
  background-color: #fff;
  text-align: right;
  border-width: 1px;
  border-radius: 0.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  z-index: 50;
}

.actions-menu ul {
  list-style-type: none;
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #a0aec0;
  border-radius: 0.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.actions-menu ul li a {
  display: block;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-decoration: none;
  color: #3182ce;
}

.actions-menu ul li a:hover {
  background-color: #edf2f7;
  color: #2c5282;
}

.table-inline {
  background-color: transparent;
  width: 100%;
  text-align: center;
  cursor: pointer;
}

.table-inline.label {
  font-weight: 600;
  text-align: left;
  margin-bottom: 0.25rem;
}

.table-inline.note {
  text-align: left;
}

.table-inline.tva {
  width: 65px;
}

.estimate-state {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  border-radius: 9999px;
  color: #fff;
  display: inline-block;
  text-align: center;
}

.estimate-action {
  background-color: #fff;
  color: #2d3748;
  font-weight: 600;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-width: 1px;
  border-color: #cbd5e0;
  border-radius: 0.25rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  font-size: 0.875rem;
  text-decoration: none;
}

.estimate-action:hover {
  background-color: #f7fafc;
}

.table-number {
  width: 15%;
  text-align: center;
}

/*
//
  COMPONENTS
//
*/

.btn {
  color: #fff;
  font-weight: 600;
  border-radius: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.btn.big {
  padding: 1rem;
}

.btn.medium {
  padding: 0.75rem;
}

.btn.small {
  padding: 0.5rem;
}

.btn.orange {
  background-color: #F79541;
}

.btn.orange:hover {
  background-color: #c05621;
}

.btn.blue {
  background-color: #4299e1;
}

.btn.blue:hover {
  background-color: #2b6cb0;
}

.blue-link {
  text-decoration: none;
  font-size: 0.75rem;
  color: #3182ce;
}

.blue-link:hover {
  color: #2c5282;
  text-decoration: underline;
}

.steps::before {
  content: " ";
  width: calc(100% - 30px);
  height: 4px;
  background-color: #4299e1;
  position: absolute;
  top: 14px;
  left: 10px;
  z-index: 0;
}

.steps .item {
  background-color: #4299e1;
  border-radius: 9999px;
  width: 2rem;
  height: 2rem;
  text-align: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  color: #fff;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
}

.steps .item:hover {
  background-color: #2b6cb0;
}

.steps .item.complete {
  background-color: #2b6cb0;
}

.steps .item.complete:hover {
  background-color: #2a4365;
}

.inputShow {
  box-shadow: 0px 0px 2.5px 2.5px #4299e1;
  -webkit-transition: box-shadow 0.5s ease-in-out;
  transition: box-shadow 0.5s ease-in-out;
}

.box-border {
  box-sizing: border-box;
}

.input, .select {
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  color: #4a5568;
  border-radius: 0.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 0.25rem;
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
}

.input.normal, .select.normal {
  background-color: #edf2f7;
}

.input.normal:focus, .select.normal:focus {
  border-color: #4299e1;
}

.input.error, .select.error {
  background-color: #fed7d7;
}

.input.error:focus, .select.error:focus {
  border-color: #f56565;
}

.input:focus, .select:focus {
  background-color: #fff;
  outline: 0;
}

.select {
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}

.select:focus {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-image: linear-gradient(45deg, green 50%, transparent 50%), linear-gradient(135deg, transparent 50%, green 50%), linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  border-color: green;
  outline: 0;
}

.unity span {
  top: 1px;
  left: 32px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #4a5568;
  position: absolute;
}

.input-error {
  color: #f56565;
  font-size: 0.75rem;
}

.checkbox-big {
  position: relative;
  width: 90px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.checkbox-big input {
  display: none;
}

.checkbox-big input:checked + label span:first-child {
  margin-left: 0;
}

.checkbox-big input:checked + label span:last-child {
  right: 0px;
}

.checkbox-big label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border-radius: 20px;
}

.checkbox-big label span:first-child {
  display: block;
  width: 172px;
  margin-left: -100%;
  -webkit-transition: margin 0.15s ease-in-out 0s;
  transition: margin 0.15s ease-in-out 0s;
}

.checkbox-big label span:first-child:before, .checkbox-big label span:first-child:after {
  display: block;
  float: left;
  width: 50%;
  height: 40px;
  padding: 0;
  line-height: 40px;
  font-size: 16px;
  color: white;
  font-weight: bold;
  box-sizing: border-box;
}

.checkbox-big label span:first-child:before {
  content: "OUI";
  padding-left: 10px;
  background-color: #2699FB;
  color: #FFFFFF;
}

.checkbox-big label span:first-child:after {
  content: "NON";
  padding-right: 10px;
  background-color: #BCE0FD;
  color: #666666;
  text-align: right;
}

.checkbox-big label span:last-child {
  display: block;
  width: 32px;
  margin: 4px;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 46px;
  border-radius: 20px;
  -webkit-transition: all 0.15s ease-in-out 0s;
  transition: all 0.15s ease-in-out 0s;
}

.delete-field {
  width: 30px;
  height: 30px;
  right: 10px;
  top: 10px;
  background-color: #edf2f7;
  border-radius: 9999px;
  cursor: pointer;
  position: absolute;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.delete-field:hover {
  background-color: #a0aec0;
}

.delete-field:hover i {
  color: #edf2f7;
}

.delete-field i {
  left: 6px;
  top: 4px;
  font-size: 18px;
  color: #a0aec0;
  position: absolute;
  font-weight: 700;
}

.delete-row {
  top: 50%;
  right: 10px;
}

.delete-row div {
  width: 30px;
  height: 30px;
  right: 10px;
  top: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #edf2f7;
  border-radius: 9999px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.delete-row div:hover {
  background-color: #a0aec0;
}

.delete-row div:hover i {
  color: #edf2f7;
}

.delete-row div i {
  left: 6px;
  top: 3px;
  font-size: 18px;
  color: #a0aec0;
  position: absolute;
  font-weight: 700;
}

.checkbox input {
  position: absolute;
  opacity: 0;
}

.checkbox input:checked + label:before {
  background: #2699FB;
}

.checkbox input:checked + label:after {
  opacity: 1;
}

.checkbox input:checked + label:hover:before {
  background: #F1F9FF;
}

.checkbox label {
  position: relative;
  cursor: pointer;
  color: #262626;
}

.checkbox label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  background: #F1F9FF;
  border: 2px solid #2699FB;
  border-radius: 10px;
  margin-top: -3px;
}

.checkbox label:after {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
}

.checkbox:hover label:before {
  background: #2699FB;
}

.colorSelect {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  cursor: pointer;
  margin-right: 0.25rem;
}

.colorSelect:hover {
  box-shadow: 0px 2px 2px grey;
}

.colorSelect.border {
  border: 1px solid #959595;
}

.colorSelect.border i {
  color: #5c5c5c;
}

.colorSelect i {
  color: white;
  top: 0px;
  position: absolute;
  left: 3px;
}

.multiselect {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  width: 100%;
}

.multiselect__content-wrapper {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  width: 100%;
}

.multiselect__option--selected.multiselect__option--highlight {
  background: #f3f3f3;
  color: #35495e;
  cursor: default;
}

.outside {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
}

/*
  //
  MAPS
  //
*/

.gm-style-cc {
  display: none;
}

.spring-spinner, .spring-spinner * {
  box-sizing: border-box;
}

.spring-spinner {
  height: 60px;
  width: 60px;
}

.spring-spinner .spring-spinner-part {
  overflow: hidden;
  height: calc(60px / 2);
  width: 60px;
}

.spring-spinner .spring-spinner-part.bottom {
  -webkit-transform: rotate(180deg) scale(-1, 1);
          transform: rotate(180deg) scale(-1, 1);
}

.spring-spinner .spring-spinner-rotator {
  width: 60px;
  height: 60px;
  border: calc(60px / 7) solid transparent;
  border-right-color: #F79541;
  border-top-color: #F79541;
  border-radius: 50%;
  box-sizing: border-box;
  -webkit-animation: spring-spinner-animation 3s ease-in-out infinite;
          animation: spring-spinner-animation 3s ease-in-out infinite;
  -webkit-transform: rotate(-200deg);
          transform: rotate(-200deg);
}

@-webkit-keyframes spring-spinner-animation {
  0% {
    border-width: calc(60px / 7);
  }

  25% {
    border-width: calc(60px / 23.33);
  }

  50% {
    -webkit-transform: rotate(115deg);
            transform: rotate(115deg);
    border-width: calc(60px / 7);
  }

  75% {
    border-width: calc(60px / 23.33);
  }

  100% {
    border-width: calc(60px / 7);
  }
}

@keyframes spring-spinner-animation {
  0% {
    border-width: calc(60px / 7);
  }

  25% {
    border-width: calc(60px / 23.33);
  }

  50% {
    -webkit-transform: rotate(115deg);
            transform: rotate(115deg);
    border-width: calc(60px / 7);
  }

  75% {
    border-width: calc(60px / 23.33);
  }

  100% {
    border-width: calc(60px / 7);
  }
}