@tailwind base;
@tailwind components;
@tailwind utilities;

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

@font-face {
  font-family: 'Tamworth';
  src: url(/assets/TAMWORTH-5dc381082894511f0765739d0fc745a6dce58c260147b50883f6ca42fa3d9dd2.oTF);
}

body {
  background-color: #FFF5EC;
}

.ccsalespro-blue-bg {
  background-color: #151541;
}

.ccsalespro-dark-blue-bg {
  background-color: #121234;
}

.page-title {
  font-family: 'Tamworth';
  color: #D94327;
}

@keyframes remove-animate {
	from {
		transform: scaleY(1);
		opacity: 1;
	}
	to {
		transform: scaleY(0);
		opacity: 0;
	}
}


table {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}

table tr td:nth-child(n+2) {
  background-color: #2845C7;
}

table tr.top-3 td:nth-child(n+2) {
  background-color: #2758F3;
}

table tr.removing {
  transform-origin: 50% 0;
  animation: remove-animate .3s linear;
}

table .points {
  font-family: 'Tamworth';
}

.hide-scrollbar {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

.hide-scrollbar::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}
