/*
Theme Name: Rate for Net
Author: WebLab
Author URI: https://weblab.ch
Version: 1.0.0
Text Domain: _custom
*/


/* Outline varijanta primary buttona (bijela pozadina, plavi outline/tekst/ikona) */
.btn-primary-outline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: #ffffff;
  border: 2px solid #2376e4;
  padding: calc(0.75rem - 2px) calc(1.25rem - 2px);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: #2376e4;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-outline:after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url("data:image/svg+xml,%3csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M9.4 1L15 6.6M15 6.6L9.4 12.2M15 6.6H1' stroke='%232376e4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e")
    no-repeat;
  background-position: center center;
  transition: all 0.3s ease-in-out;
}

.btn-primary-outline:hover {
  background-color: #2376e4;
  color: #ffffff;
}

.btn-primary-outline:hover:after {
  background-image: url("data:image/svg+xml,%3csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M9.4 1L15 6.6M15 6.6L9.4 12.2M15 6.6H1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  transform: translateX(5px);
}
